Skip to content

Update actions/checkout action to v5 #194

Update actions/checkout action to v5

Update actions/checkout action to v5 #194

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- 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