Upgrade Node to v20. #131
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: "CI" | |
on: [push, pull_request] | |
jobs: | |
npm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm ci | |
- run: npm test | |
self-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
smalltalk: [ Squeak64-trunk, Squeak32-4.5 ] | |
os: [ macos-latest, windows-latest, ubuntu-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- if: runner.os != 'Windows' | |
run: | | |
smalltalkci --help | |
[[ ! -z "${SMALLTALK_CI_HOME}" ]] || ( echo "SMALLTALK_CI_HOME not set" && false ) | |
- shell: bash | |
if: runner.os == 'Windows' | |
run: smalltalkci --help |