-
Notifications
You must be signed in to change notification settings - Fork 103
34 lines (26 loc) · 817 Bytes
/
ci.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
name: CI
on:
pull_request:
branches:
- master
jobs:
code_quality:
runs-on: ubuntu-latest
steps:
- name: Checkout main repository
uses: actions/checkout@v3
- name: Clone ags-types repository
uses: actions/checkout@v3
with:
repository: Jas-SinghFSU/ags-types
path: types
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Run Type Check - Extended Diagnostics
run: npx tsc --noEmit --pretty --extendedDiagnostics