mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
30 lines
671 B
YAML
30 lines
671 B
YAML
name: Check
|
|
on: [push, pull_request]
|
|
jobs:
|
|
release:
|
|
name: Check
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- name: Build
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
- name: Test
|
|
run: |
|
|
npm run lint
|
|
npm run test
|
|
- name: Coverage
|
|
uses: coverallsapp/[email protected]
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Performance
|
|
run: |
|
|
npm run perf:diff |