Skip to content

ESLint 9

ESLint 9 #48

Workflow file for this run

name: Check PR
on:
# Run on pull request
pull_request:
branches: [main, develop]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
pull-requests: write
jobs:
# Sonarcloud analysis
analysis:
uses: ./.github/workflows/sonarcloud.yml
secrets: inherit
# CI
build:
uses: ./.github/workflows/build.yml
# Storybook test on vercel env
test:
needs: build
uses: ./.github/workflows/test.yml
# Trigger depfu merge
trigger-automerge:
needs: [test, analysis]
uses: ./.github/workflows/pr-depfu-merge.yml