We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 292ea37 commit d07097cCopy full SHA for d07097c
1 file changed
.github/workflows/typescript.yml
@@ -0,0 +1,36 @@
1
+name: Continious integration for VSCode extension
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ eslint:
8
+ name: 'Node.js v${{ matrix.node }}'
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ node:
13
+ - 22
14
+
15
+ steps:
16
+ - uses: actions/setup-node@v3
17
+ with:
18
+ node-version: '${{ matrix.node }}'
19
20
+ - uses: actions/checkout@v4
21
22
+ - name: 'Cache node_modules'
23
+ uses: actions/cache@v4
24
25
+ path: ~/.npm
26
+ key: ${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('**/package.json') }}
27
+ restore-keys: |
28
+ ${{ runner.os }}-node-v${{ matrix.node }}-
29
30
+ - name: 'Install Dependencies'
31
+ run: npm ci
32
+ working-directory: ./vscode
33
34
+ - name: 'Run ESLint'
35
+ run: npm run eslint-check
36
0 commit comments