Skip to content

Improved support for detecting changes and undoing them while testing #34

Improved support for detecting changes and undoing them while testing

Improved support for detecting changes and undoing them while testing #34

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run compile
- name: Test
run: npm run test