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 f470e0c commit af5618eCopy full SHA for af5618e
.github/workflows/ci.yml
@@ -2,23 +2,26 @@ name: CI
2
3
on:
4
push:
5
- branches: [ "main" ]
+ branches: ["main"]
6
pull_request:
7
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - name: Checkout
15
- uses: actions/checkout@v4
16
-
17
- - name: Use Node.js
18
- uses: actions/setup-node@v4
19
- with:
20
- node-version-file: .nvmrc
21
- cache: 'npm'
22
23
- - name: Compile TypeScript
24
- run: npx tsc --build
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Use Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version-file: .nvmrc
+ cache: "npm"
+ - name: Install dependencies
+ run: npm ci
25
26
+ - name: Compile TypeScript
27
+ run: npx tsc --build
0 commit comments