Update event listener names #928
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: | |
branches: [$default-branch] | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
test_on_windows: | |
name: Test Ignition on Windows with Node 16 | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
- name: Run tests in examples | |
run: npm run test:examples | |
test_on_macos: | |
name: Test Ignition on MacOS with Node 16 | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
- name: Run tests in examples | |
run: npm run test:examples | |
test_on_linux: | |
name: Test Ignition on Ubuntu with Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [16, 18, 20.5] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
- name: Run tests in examples | |
run: npm run test:examples | |
lint: | |
name: Lint the project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Lint | |
run: npm run lint |