Skip to content

Bump eslint-config-beslogic to 3.0 and drop-pre-commit #78

Bump eslint-config-beslogic to 3.0 and drop-pre-commit

Bump eslint-config-beslogic to 3.0 and drop-pre-commit #78

name: Frontend PR validation
on:
push:
branches:
- main
paths:
- "canopeum_frontend/**"
- ".github/workflows/canopeum_frontend_pr_validation.yml"
pull_request:
branches:
- main
- production
paths:
- "canopeum_frontend/**"
- ".github/workflows/canopeum_frontend_pr_validation.yml"
jobs:
Lint-Autofixes:
runs-on: ubuntu-latest
defaults:
run:
working-directory: canopeum_frontend
# Only run autofixes on PRs
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
# Token with Contents permissions to allow retriggering workflow
token: ${{ secrets.PR_AUTOFIX_PAT }}
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint:fix
- name: Commit autofixes
uses: EndBug/add-and-commit@v9
# Push autofixes even on failure & prevent infinite loops
if: ${{ !cancelled() && github.event.head_commit.author.name != 'github-actions' }}
with:
default_author: github_actions
- name: Logging
if: ${{ !cancelled() }}
run: echo "${{toJSON(github.actor)}}"
- name: Logging
if: ${{ !cancelled() }}
run: echo "${{github.actor}}"
- name: Logging
if: ${{ !cancelled() }}
run: echo "${{github.triggering_actor}}"
- name: Logging
if: ${{ !cancelled() }}
run: echo "${{toJSON(github)}}"
Build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: canopeum_frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run build