chore: switch to pnpm 9.x.x
[poolifier.git] / .github / workflows / ci.yml
1 name: CI
2
3 on:
4 push:
5 branches: [master]
6 pull_request:
7 types: [opened, synchronize, reopened]
8 merge_group:
9 branches: [master]
10
11 permissions:
12 contents: read
13 checks: read
14
15 jobs:
16 build:
17 strategy:
18 matrix:
19 os: [windows-latest, macos-latest, ubuntu-latest]
20 node: ['18.x', '20.x', 'latest']
21
22 name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
23
24 runs-on: ${{ matrix.os }}
25
26 steps:
27 - name: Checkout
28 uses: actions/checkout@v4
29 with:
30 fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis. This is needed for better sonar
31
32 - name: Setup pnpm
33 uses: pnpm/action-setup@v3
34 with:
35 version: 9
36
37 - name: Setup Node.js ${{ matrix.node }}
38 uses: actions/setup-node@v4
39 with:
40 node-version: ${{ matrix.node }}
41 cache: 'pnpm'
42
43 - name: Install Dependencies
44 run: pnpm install --ignore-scripts --frozen-lockfile
45
46 - name: Build
47 run: pnpm build
48
49 - name: Lint
50 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
51 run: pnpm lint
52
53 - name: Tests
54 run: pnpm test
55
56 - name: Coverage Report
57 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
58 run: pnpm coverage
59
60 - name: Check for SonarCloud Token Availability
61 id: sonar-token
62 shell: bash
63 run: |
64 if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then
65 echo "available=true" >> $GITHUB_OUTPUT;
66 else
67 echo "available=false" >> $GITHUB_OUTPUT;
68 fi
69
70 - name: SonarCloud Code Analysis
71 if: ${{ steps.sonar-token.outputs.available == 'true' && github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
72 uses: sonarsource/sonarcloud-github-action@v2.1.1
73 env:
74 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
75 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}