Merge pull request #263 from tanmaysharma2001/master #732
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: itest | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: itest-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
java: [11, 18] | |
node: [12, 16] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
- run: npm install | |
- run: cd itest && node ../src/eoc.js --batch dataize program | |
- run: cd itest && node ../src/eoc.js --alone --batch dataize program | |
- run: cd itest && node ../src/eoc.js clean | |
- run: cd itest && node ../src/eoc.js --batch test |