chore: bump fastify-plugin from 4.5.0 to 4.5.1 #3124
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js CI | |
on: | |
push: | |
branches: [v*, next] | |
paths-ignore: | |
- 'docs/*' | |
- '*.md' | |
pull_request: | |
branches: [v*, next] | |
paths-ignore: | |
- 'docs/*' | |
- '*.md' | |
jobs: | |
Build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
node-version: [16.13.1, 16.x, 18.x, 19.x] | |
permissions: | |
checks: write | |
pull-requests: write | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build projects | |
run: yarn build | |
- name: Run tests | |
run: yarn test | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: matrix.os == 'ubuntu-latest' | |
with: | |
junit_files: 'test-results/*.xml' | |
- name: Upload unit-tests coverage to Codecov | |
uses: codecov/codecov-action@v3.1.1 | |
with: | |
directory: coverage/library | |
flags: unittests | |
- name: Upload examples code coverage to Codecov | |
uses: codecov/codecov-action@v3.1.1 | |
with: | |
directory: coverage/integration | |
flags: integration | |
Lint-Files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Check licenses | |
run: yarn license-checker | |
- name: Lint project | |
run: yarn lint -f @microsoft/eslint-formatter-sarif -o eslint.sarif | |
- name: Upload linter SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: eslint.sarif | |
CodeQL-Analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: javascript | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build projects | |
run: yarn build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
Qodana-Analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: 'Qodana Scan' | |
uses: JetBrains/qodana-action@v2022.3.4 | |
- uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json | |
automerge: | |
name: 'Merge Dependabot updates' | |
if: github.event_name == 'pull_request' | |
needs: [Build, Lint-Files, CodeQL-Analysis] | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/github-action-merge-dependabot@v3.6.3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |