Migrate to Node 20, clean up workflows #13
Workflow file for this run
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: test | |
on: | |
pull_request: | |
branches: [ next ] | |
workflow_dispatch: | |
workflow_call: | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
lint-docs: | |
# https://github.com/MithrilJS/mithril.js/issues/2898 | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
steps: | |
- run: git clone --depth=0 https://github.com/MithrilJS/mithril.js.git && cd mithril.js | |
- uses: ./.github/actions/setup | |
- run: npm run lint:docs | |
lint-js: | |
runs-on: ubuntu-latest | |
steps: | |
- run: git clone --depth=0 https://github.com/MithrilJS/mithril.js.git && cd mithril.js | |
- uses: ./.github/actions/setup | |
- run: npm run lint:js | |
build-js: | |
needs: lint-js | |
runs-on: ubuntu-latest | |
steps: | |
- run: git clone --depth=0 https://github.com/MithrilJS/mithril.js.git && cd mithril.js | |
- uses: ./.github/actions/setup | |
- run: npm run build | |
test-js: | |
needs: build-js | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node-version: | |
- 16 | |
- 18 | |
- 20 | |
- 22 | |
steps: | |
- run: git clone --depth=0 https://github.com/MithrilJS/mithril.js.git && cd mithril.js | |
- uses: ./.github/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm run test:js |