Skip to content

Commit

Permalink
chore: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vtrbo committed Jul 14, 2022
1 parent acd18c6 commit 5a5db69
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
cache: pnpm

- name: Install
run: npm ci
run: pnpm install --frozen-lockfile

- name: Lint
run: npm run lint
run: pnpm run lint

# typecheck:
# runs-on: ubuntu-latest
Expand All @@ -45,10 +45,10 @@ jobs:
# cache: pnpm

# - name: Install
# run: npm ci
# run: pnpm install --frozen-lockfile

# - name: Typecheck
# run: npm run typecheck
# run: pnpm run typecheck

test:
runs-on: ${{ matrix.os }}
Expand All @@ -72,10 +72,10 @@ jobs:
cache: pnpm

- name: Install
run: npm ci
run: pnpm install --frozen-lockfile

- name: Build
run: npn run build
run: pnpm run build

- name: Test
run: npn run test
run: pnpm run test

0 comments on commit 5a5db69

Please sign in to comment.