Skip to content

gh action

gh action #288

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: '20'
- name: npm install, build, and test
run: |
yarn install
yarn test
env:
CI: true