Bump hashicorp/web-platform-packages from a66d88eda2cb3299c1817aec66052357ef41343d to e87bdd69beb6beee55ae0ab20229e98bd8e6a710 #194
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 |