Setup NodeJS 12 on CI
This commit is contained in:
parent
6e7782b306
commit
1e92f6311b
|
@ -1,14 +1,18 @@
|
||||||
name: CI Tests
|
name: Main
|
||||||
|
|
||||||
on: [pull_request, push]
|
on: [pull_request, push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
tests:
|
||||||
name: Quick tests
|
name: Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Bootstrap
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: "12.x"
|
||||||
|
registry-url: "https://registry.npmjs.org"
|
||||||
|
- name: Install deps
|
||||||
run: yarn
|
run: yarn
|
||||||
- name: Check types
|
- name: Check types
|
||||||
run: yarn check-types
|
run: yarn check-types
|
||||||
|
|
Reference in New Issue