mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-24 09:13:24 +01:00
14 lines
297 B
YAML
14 lines
297 B
YAML
name: actions
|
|
on: [push, pull_request]
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- run: yarn && yarn build:rollup && yarn test && yarn lint
|
|
env:
|
|
CI: true
|