mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
872 B
YAML
31 lines
872 B
YAML
name: test
|
|
on: pull_request
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cancel running workflows
|
|
uses: styfle/cancel-workflow-action@0.12.1
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v3
|
|
- name: Set node version
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
cache: 'pnpm'
|
|
node-version: '20'
|
|
- name: Cache node_modules
|
|
id: node-modules-cache
|
|
uses: actions/cache@v5
|
|
with:
|
|
path: '**/node_modules'
|
|
key: node-modules-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
- name: Install dependencies
|
|
if: steps.node-modules-cache.outputs.cache-hit != 'true'
|
|
run: pnpm install
|
|
- name: Run tests
|
|
run: pnpm test
|