Skip to content

Bump actions/checkout from 3.5.0 to 4.1.1 #192

Bump actions/checkout from 3.5.0 to 4.1.1

Bump actions/checkout from 3.5.0 to 4.1.1 #192

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- 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