Skip to content

Add missing publish config to package.json #54

Add missing publish config to package.json

Add missing publish config to package.json #54

Workflow file for this run

name: CI
on: [push]
jobs:
test:
strategy:
matrix:
nodeVersion: [18, 20, 22]
name: Tests
runs-on: ubuntu-latest
container:
image: node:${{ matrix.nodeVersion }}-alpine
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test