mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-24 09:48:37 +08:00
27 lines
474 B
YAML
27 lines
474 B
YAML
name: CI
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
ci:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: |
|
|
npm install -g codecov
|
|
npm install -g @liriliri/lsla
|
|
npm i
|
|
npm run ci
|
|
codecov --disable=gcov |