Skip to content

Merge branch 'main' into convert_tests_to_esm #1173

Merge branch 'main' into convert_tests_to_esm

Merge branch 'main' into convert_tests_to_esm #1173

Workflow file for this run

name: Run Lint and Tests
on:
push:
branches-ignore:
- main
- alpha
- beta
- next
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest] #, windows-latest]
node-version: [20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint files
run: npm run lint
- name: Run tests
run: npm run test:ci