X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fci.yml;h=5b240db0c190eeab896cef6273c3066303f00677;hb=e905ea64c054a25ef73885e41fc063279bc599ca;hp=d10434394915dccf4b1e7ea65e7e5cb2271c734c;hpb=a23a7b8e8761f503b701f77e2c35207b688588ba;p=poolifier.git diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1043439..5b240db0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,58 +2,74 @@ name: CI on: push: - branches: - - master + branches: [master] pull_request: - workflow_dispatch: - inputs: - withBenchmark: - description: 'With Benchmark?' - default: false + types: [opened, synchronize, reopened] + merge_group: + branches: [master] + +permissions: + contents: read + checks: read jobs: build: - runs-on: ubuntu-latest - strategy: matrix: - node-version: [12.x, 14.x] + os: [windows-latest, macos-latest, ubuntu-latest] + node: ['16.x', '18.x', '20.x'] + + name: Node.js ${{ matrix.node }} on ${{ matrix.os }} + + runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis. This is needed for better sonar - - name: Set node version to ${{ matrix.node-version }} - uses: actions/setup-node@v2 + - name: Setup pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 + + - name: Setup Node.js ${{ matrix.node }} + uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} + cache: 'pnpm' - name: Install - run: npm ci + run: pnpm install --ignore-scripts - name: Build - run: npm run build --if-present + run: pnpm build - name: Lint - run: npm run lint + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} + run: pnpm lint - - name: Tests & Coverage - run: | - npm run test - npm run coverage - env: - CI: true + - name: Tests + run: pnpm test + + - name: Coverage Report + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} + run: pnpm coverage - - name: Sonar Code Analysis - if: "github.repository == 'pioardi/poolifier'" + - name: Check for SonarCloud Token Availability + id: sonar-token + shell: bash run: | - npm run sonar + if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then + echo "available=true" >> $GITHUB_OUTPUT; + else + echo "available=false" >> $GITHUB_OUTPUT; + fi + + - name: SonarCloud Code Analysis + if: ${{ steps.sonar-token.outputs.available == 'true' && github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} + uses: sonarsource/sonarcloud-github-action@v2.0.2 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - - - name: Benchmark - if: github.event.inputs.withBenchmark - run: npm run benchmark