Skip to content

fix: set provenance and that the packages should be published publicly #7

fix: set provenance and that the packages should be published publicly

fix: set provenance and that the packages should be published publicly #7

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
# - name: Check types
# run: pnpm run tsc
- name: Run unit tests
run: pnpm run test