-
Notifications
You must be signed in to change notification settings - Fork 612
50 lines (38 loc) · 1.08 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Check
on:
workflow_dispatch:
push:
jobs:
check:
name: Format, Schema, and Examples
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_PAT || github.token }}
ref: ${{ github.ref }}
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Install Node dependencies
run: yarn --frozen-lockfile
- name: Setup data
run: yarn data
- name: Install Parallel
run: |
# Faster than "sudo apt-get install parallel"
wget https://raw.githubusercontent.com/martinda/gnu-parallel/master/src/parallel
chmod +x parallel
cp parallel sem
sudo mv parallel sem /usr/local/bin
- name: Format
run: yarn format
- name: Build Schema
run: yarn schema
- name: Check Schema
run: scripts/check-schema.sh
- name: Setup Git remote
run: scripts/setup-git-ci.sh
- name: Check and Commit
run: scripts/check-and-commit.sh