Skip to content

Merge pull request #118 from github/reattach_on_mutate #342

Merge pull request #118 from github/reattach_on_mutate

Merge pull request #118 from github/reattach_on_mutate #342

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: npm install, build, and test
run: |
npm install
npm test
env:
CI: true