Skip to content

chore: prefer node test vs jest test; prefer importmap.json vs node.importmap #104

chore: prefer node test vs jest test; prefer importmap.json vs node.importmap

chore: prefer node test vs jest test; prefer importmap.json vs node.importmap #104

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Setup Chomp
uses: guybedford/chomp-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: chomp build
- name: Lint
run: chomp lint
- name: Run tests
run: chomp test
env:
CI: true