make some breaking changes (see details below): #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "GitHub Actions CI" | |
on: { push: { branches: [ master ] }, pull_request: { branches: [ master ] } } | |
jobs: | |
lib: | |
if: github.event_name == 'push' | |
strategy: { matrix: { os: [ ubuntu-20.04, windows-2019, macos-12 ], node: [ 20, 22 ] }, fail-fast: false } | |
runs-on: ${{ matrix.os }} | |
steps: | |
- { uses: actions/setup-node@v4, with: { node-version: "${{ matrix.node }}" } } | |
- { uses: actions/checkout@v4 } | |
- name: lib | |
run: | | |
node --version | |
npm --version | |
yarn --version | |
npx envinfo | |
yarn --pure-lockfile --network-timeout 60000 | |
yarn run lib |