Skip to content

Commit

Permalink
ci: node fix
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi authored Oct 10, 2024
1 parent bf3591b commit df869e8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache: 'yarn'
cache-dependency-path: frontend/yarn.lock
- working-directory: frontend/
run: |
npm ci
npm run build --if-present
npm test
yarn install --frozen-lockfile
# npm ci
# npm run build --if-present
# npm test

0 comments on commit df869e8

Please sign in to comment.