build(ci): remove node.js 18.x from windows tests
[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: ['16.x', '18.x', '20.x']
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@v2
34 with:
35 version: 8
36
37 - name: Setup Node.js ${{ matrix.node }}
38 uses: actions/setup-node@v3
39 with:
40 node-version: ${{ matrix.node }}
41 cache: 'pnpm'
42
43 - name: Install Dependencies
44 run: pnpm install --ignore-scripts
45
46 - name: Build
47 run: pnpm build
48
49 - name: Lint
50 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
51 run: pnpm lint
52
53 - name: Tests
54 if: ${{ matrix.os != 'windows-latest' || matrix.node != '16.x' || matrix.node != '18.x' }}
55 run: pnpm test
56
57 - name: Coverage Report
58 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
59 run: pnpm coverage
60
61 - name: Check for SonarCloud Token Availability
62 id: sonar-token
63 shell: bash
64 run: |
65 if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then
66 echo "available=true" >> $GITHUB_OUTPUT;
67 else
68 echo "available=false" >> $GITHUB_OUTPUT;
69 fi
70
71 - name: SonarCloud Code Analysis
72 if: ${{ steps.sonar-token.outputs.available == 'true' && github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
73 uses: sonarsource/sonarcloud-github-action@v2.0.2
74 env:
75 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}