mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-23 00:32:31 +01:00
18 lines
293 B
YAML
18 lines
293 B
YAML
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
|