We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b039ce6 commit 65c62deCopy full SHA for 65c62de
2 files changed
.github/workflows/pull-request.yaml
@@ -7,14 +7,21 @@ on:
7
branches: [ main ]
8
9
jobs:
10
- build:
+ build_and_test:
11
+ concurrency:
12
+ group: ${{ github.ref }}
13
+ cancel-in-progress: true
14
+
15
runs-on: ubuntu-latest
16
17
steps:
- - name: Check out repository
- uses: actions/checkout@v3
18
+ - name: Cloning repo
19
+ uses: actions/checkout@v4
20
- - name: Set up Node
- uses: actions/setup-node@v3
21
+ - uses: actions/setup-node@v4
22
+ with:
23
+ node-version: '18.x'
24
+ registry-url: 'https://registry.npmjs.org'
25
26
- name: Install dependencies
27
run: npm install
tsconfig.json
@@ -6,7 +6,8 @@
6
"outDir": "dist",
"rootDir": "src",
"strict": true,
- "target": "es2019"
+ "target": "es2019",
+ "skipLibCheck": true
},
"include": [
"src/**/*"
0 commit comments