-
Notifications
You must be signed in to change notification settings - Fork 34
57 lines (48 loc) · 1.09 KB
/
typescript.yml
File metadata and controls
57 lines (48 loc) · 1.09 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
name: VS Code extension (ESLint)
on:
push:
branches:
- master
paths:
- 'vscode/**'
- '.github/workflows/typescript.yml'
pull_request:
branches:
- master
paths:
- 'vscode/**'
- '.github/workflows/typescript.yml'
workflow_dispatch:
jobs:
eslint:
name: Lint on Node v${{ matrix.node }}
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
node:
- 22
defaults:
run:
working-directory: ./vscode
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache-dependency-path: vscode/package-lock.json
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Run ESLint
run: npm run eslint-check
env:
CI: true