Skip to content

Update actions/checkout action to v6 #228

Update actions/checkout action to v6

Update actions/checkout action to v6 #228

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true