Skip to content

bump checkout

bump checkout #8

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main # You can specify the branch you want to trigger the workflow on
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Test
run: npm run test
- name: Build
run: npm run build