1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-31 10:51:44 +02:00

Create ci.yml

This commit is contained in:
Ian Storm Taylor
2019-11-09 20:22:31 -05:00
committed by GitHub
parent 69f85a77f2
commit 06812a1efe

17
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- run: |
yarn install
yarn build
yarn lint
yarn test
env:
CI: true