2020-01-16 23:50:02 +02:00
|
|
|
name: Node CI
|
|
|
|
|
2020-01-22 14:18:31 +01:00
|
|
|
on: [pull_request]
|
2020-01-16 23:50:02 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Setup Node.js 12.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
|
|
|
|
- name: Install and lint
|
|
|
|
run: |
|
|
|
|
npm ci
|
2020-02-02 20:04:35 +02:00
|
|
|
npm run test:other
|
2020-01-16 23:50:02 +02:00
|
|
|
npm run test:code
|
|
|
|
env:
|
|
|
|
CI: true
|