yomichan/.github/workflows/ci.yml

40 lines
736 B
YAML
Raw Normal View History

2020-02-17 02:38:37 +00:00
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '16.x'
2020-02-17 02:38:37 +00:00
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run test-lint
env:
CI: true
- name: Lint CSS
run: npm run test-lint-css
env:
CI: true
- name: Lint HTML
run: npm run test-lint-html
env:
CI: true
- name: Tests
run: npm run test-code
2020-02-17 02:38:37 +00:00
env:
CI: true
- name: Manifest
run: npm run test-manifest
env:
CI: true
- name: Build
run: npm run test-build