Skip to content

refactor/move-new-api #922

refactor/move-new-api

refactor/move-new-api #922

Workflow file for this run

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