Skip to content

0.77.0

0.77.0 #594

Workflow file for this run

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