Skip to content

Bump actions/checkout from 3.6.0 to 6.0.2 #39

Bump actions/checkout from 3.6.0 to 6.0.2

Bump actions/checkout from 3.6.0 to 6.0.2 #39

Workflow file for this run

# .github/workflows/nodejs.yml
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Use Node.js 18
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 18
- run: npm install
- run: npm run lint || echo "Skipping lint if not set"
- run: npm test || echo "Skipping test if not set"