forked from LeetCode-in-TypeScript/LeetCode-in-TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 909 Bytes
/
node.yml
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
name: TypeScript CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
unitTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 8.8.0
- name: Install dependencies
run: |
pnpm install
- name: Run tests
run: |
pnpm run coverage
ls -al coverage
- name: SonarCloud Scan
uses: sonarsource/sonarqube-scan-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: 1ebdc4b127391a8acbc3420eb585961e4e0846de
- name: Upload coverage to codecov
run: curl -s https://codecov.io/bash | bash