Skip to content

Commit

Permalink
Improve GitHub Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaong committed Jul 18, 2024
1 parent 6194a97 commit a3f0dd5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'yarn'

- name: Install dependencies
run: yarn install
run: yarn install --frozen-lockfile

- name: Run tests
run: yarn test
Expand All @@ -39,9 +40,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'yarn'

- name: Install dependencies
run: yarn install
run: yarn install --frozen-lockfile

- name: Report coverage
env:
Expand Down

0 comments on commit a3f0dd5

Please sign in to comment.