chore(deps-dev): Bump eslint from 9.19.0 to 9.20.0 #221
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: CI | |
on: | |
push: | |
branches: ["*"] | |
tags: ["v*"] | |
pull_request: | |
branches: ["*"] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: "Build" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- name: Restore cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
.next/cache | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} | |
restore-keys: | | |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}- | |
- name: Install the latest version of Corepack | |
run: npm i -g corepack@latest | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
test: | |
name: "Test" | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- name: Create a .env file | |
run: | | |
touch .env | |
echo "APP_NAME=\"CV - Connor van Spronssen\"" >> .env | |
echo "APP_URL=\"http://localhost:3000\"" >> .env | |
- name: Install the latest version of Corepack | |
run: npm i -g corepack@latest | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run tests | |
run: pnpm coverage | |
- name: Delete the .env file after tests are completed | |
run: rm .env | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: coverage/ | |
sonar-scan: | |
name: "SonarQube Scan" | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/download-artifact@v4 | |
- name: SonarQube Scan | |
uses: SonarSource/sonarqube-scan-action@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |