Skip to content

Update the github workflow #584

Update the github workflow

Update the github workflow #584

Workflow file for this run

name: build
on: [push, pull_request_target]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.13.1]
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.13.1
uses: actions/setup-node@v4
with:
node-version: 20.13.1
- name: npm install, build, and test
run: |
npm ci
npm test
env:
CI: true