Skip to content

4.0.1

4.0.1 #5

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- run: npm test
- name: Spec compliance tests
run: |
git clone --depth 1 https://github.com/toml-lang/toml-test.git .binarymuse/toml-test
npm run test:spec