chore(deps): update actions/cache digest to f4b3439 #6
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: Gravity | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
env: | |
VOLTA_FEATURE_PNPM: 1 | |
jobs: | |
build: | |
name: Run Gravity | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- uses: volta-cli/action@d253558a6e356722728a10e9a469190de21a83ef # v4 | |
- uses: actions/cache@f4b3439a656ba812b8cb417d2d49f9c810103092 # v3 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm dlx @gravityci/cli ./packages/qunit-dom/dist/qunit-dom.js | |
env: | |
GRAVITY_TOKEN: ${{ secrets.GRAVITY_TOKEN }} |