-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (69 loc) · 1.85 KB
/
Copy pathcode-qa-js.yaml
File metadata and controls
81 lines (69 loc) · 1.85 KB
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
72
73
74
75
76
77
78
79
80
81
name: Code Quality Assurance - JavaScript/TypeScript
on:
push:
branches: [main]
paths:
- "**/*.css"
- "**/*.js"
- "**/*.json"
- "**/*.jsx"
- "**/*.ts"
- "**/*.tsx"
- ".github/workflows/code-qa-js.yaml"
- "esbuild.js"
- "jest.config.js"
- "package*.json"
- "src/**"
- "tsconfig*.json"
pull_request:
branches: [main]
paths:
- "**/*.css"
- "**/*.js"
- "**/*.json"
- "**/*.jsx"
- "**/*.ts"
- "**/*.tsx"
- ".github/workflows/code-qa-js.yaml"
- "esbuild.js"
- "jest.config.js"
- "package*.json"
- "src/**"
- "tsconfig*.json"
permissions:
contents: read
jobs:
code-quality-js-ts:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v5
# Setup Node.js environment for TypeScript/JavaScript development
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
# Build Node.js project only (unit tests do not require other language binaries)
- name: Build extension
run: npm run compile
# Run JavaScript/TypeScript specific checks
- name: Code formatting check
run: npm run prettier:check
- name: TypeScript type check
run: npm run check-types
- name: ESLint check
run: npm run lint
- name: Run unit tests
run: npm run test:jest