Bump hashicorp/web-platform-packages from a66d88eda2cb3299c1817aec66052357ef41343d to 029314d8238ca0d4275c6ad1e6e7ff4df3f22107 #193
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
permissions: | |
contents: read | |
jobs: | |
node_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0 | |
- id: npm-cache-dir | |
run: echo "dir=$(npm config get cache)" >> "$GITHUB_OUTPUT" | |
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 | |
with: | |
path: '${{ steps.npm-cache-dir.outputs.dir }}' | |
key: "${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}" | |
restore-keys: '${{ runner.os }}-node-' | |
- run: npm ci | |
- run: npx turbo run test --concurrency 1 --continue |