Skip to content

Merge pull request #238 from BruceDai/support_latest_spec #477

Merge pull request #238 from BruceDai/support_latest_spec

Merge pull request #238 from BruceDai/support_latest_spec #477

Workflow file for this run

name: build and test
on: [push, pull_request]
jobs:
job:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Git config
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm run lint
- run: npm run build-production --if-present
- run: npm test
env:
CI: true