|
|
|
|
@ -34,13 +34,13 @@ jobs:
|
|
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
|
|
|
with:
|
|
|
|
|
node-version: 20
|
|
|
|
|
cache: yarn
|
|
|
|
|
cache: pnpm
|
|
|
|
|
cache-dependency-path: ./web/package.json
|
|
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
|
|
|
run: yarn test
|
|
|
|
|
run: pnpm test
|
|
|
|
|
|