mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-27 09:50:52 -05:00
31 lines
563 B
YAML
31 lines
563 B
YAML
|
name: CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node-version: [12.x, 14.x, 16.x]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||
|
uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: ${{ matrix.node-version }}
|
||
|
cache: 'npm'
|
||
|
- run: npm ci
|
||
|
- run: npm run lint
|
||
|
- run: npm run benchmark
|
||
|
- run: npm run test
|
||
|
- run: npm run build
|
||
|
- run: npm run build-demo
|