-
Notifications
You must be signed in to change notification settings - Fork 13
71 lines (69 loc) · 1.85 KB
/
ci-sdk-as-lint.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
60
61
62
63
64
65
66
67
68
69
70
71
name: ci-sdk-as-lint
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
get-dirs:
if: github.event_name == 'pull_request'
name: find examples
runs-on: ubuntu-latest
outputs:
dirs: ${{ steps.get-dirs.outputs.dirs }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Find Examples
id: get-dirs
# we need to lint all the examples
run: echo "dirs=$(ls -d sdk/assemblyscript/examples/* | jq -Rsc 'split("\n")[:-1]' )" >> ${GITHUB_OUTPUT}
sdk-as-lint-src:
if: github.event_name == 'pull_request'
name: lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: sdk/assemblyscript/src
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ">=20"
- name: Install dependencies
run: npm install
- name: Check formatting
run: npm run pretty:check
- name: Lint project
run: npm run lint
sdk-as-lint-examples:
needs: get-dirs
if: github.event_name == 'pull_request'
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }}
defaults:
run:
working-directory: ${{ matrix.dir }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ">=20"
- name: Install source dependencies
working-directory: sdk/assemblyscript/src
run: npm install
- name: Install example dependencies
run: npm install
- name: Check formatting
run: npm run pretty:check
- name: Lint project
run: npm run lint