Skip to content

Bump hashicorp/web-platform-packages from a66d88eda2cb3299c1817aec66052357ef41343d to e87bdd69beb6beee55ae0ab20229e98bd8e6a710 #194

Bump hashicorp/web-platform-packages from a66d88eda2cb3299c1817aec66052357ef41343d to e87bdd69beb6beee55ae0ab20229e98bd8e6a710

Bump hashicorp/web-platform-packages from a66d88eda2cb3299c1817aec66052357ef41343d to e87bdd69beb6beee55ae0ab20229e98bd8e6a710 #194

Workflow file for this run

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