-
Notifications
You must be signed in to change notification settings - Fork 5
59 lines (48 loc) · 1.32 KB
/
continuous-build.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
51
52
53
54
55
56
57
58
59
name: Continuous Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- name: Clone @api3/dapp-registry
uses: actions/checkout@v3
- name: Check hyperlinks
uses: gaurav-nelson/github-action-markdown-link-check@v1
lint-test:
runs-on: ubuntu-latest
steps:
- name: Clone @api3/dapp-registry
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Get yarn cache directory path
id: deps-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: deps-cache
with:
path: ${{ steps.deps-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Linting Checks
run: yarn lint
- name: Run Validations
run: yarn validate
required-checks-passed:
name: All required checks passed
runs-on: ubuntu-latest
needs: [documentation, lint-test]
steps:
- run: exit 0