Skip to content

init

init #1

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["22"]
os: [ubuntu-latest, macOS-latest]
name: node.js ${{ matrix.node }} test in ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm i
- name: Test
run: npm run test
- name: Build
run: npm run build