Skip to content

Commit

Permalink
Another attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Nov 12, 2024
1 parent 39f9f56 commit d24f7a3
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,16 @@ jobs:
node: [20.x, 22.x, 23.x]
fail-fast: false
runs-on: ${{ matrix.runner }}
timeout-minutes: 15
env:
npm_config_loglevel: verbose
npm_config_foreground_scripts: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Get npm cache directory
id: npm-cache-dir
shell: bash
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- uses: actions/cache@v4
with:
key: ${{ matrix.runner }}-node-${{ matrix.node }}-${{ hashFiles('package-lock.json') }}
path: ${{ steps.npm-cache-dir.outputs.dir }}
- run: npm ci --loglevel verbose
cache: "npm"
- run: npm install -g npm@10
- run: npm ci
- run: npm run test-smoke

0 comments on commit d24f7a3

Please sign in to comment.