Skip to content

fix: stable ordering of files (#27) #71

fix: stable ordering of files (#27)

fix: stable ordering of files (#27) #71

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: ${{matrix.node}}
- run: npm install
- run: npm run build
- name: Lint
run: npm run lint
test:
needs: check
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: [18, 19]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: ${{matrix.node}}
- run: npm install
- name: Unit tests
run: npm run test