Skip to content

Bump eslint from 8.53.0 to 8.54.0 #134

Bump eslint from 8.53.0 to 8.54.0

Bump eslint from 8.53.0 to 8.54.0 #134

Workflow file for this run

name: Pipeline
on:
- pull_request
jobs:
build:
name: Test
uses: ./.github/workflows/docker.yml
secrets: inherit
cypress:
name: Cypress
uses: ./.github/workflows/docker.yml
secrets: inherit
with:
target: cypress
development:
name: Development
uses: ./.github/workflows/docker.yml
secrets: inherit
with:
target: development
publish: false
production:
name: Production
uses: ./.github/workflows/docker.yml
secrets: inherit
with:
target: production
publish: false
rubocop:
name: Rubocop
uses: ./.github/workflows/lint.yml
with:
command: bundle exec rubocop --config .rubocop.yml .
needs: build
reek:
name: Reek
uses: ./.github/workflows/lint.yml
with:
command: bundle exec reek --config .reek.yml .
needs: build
brakeman:
name: Brakeman
uses: ./.github/workflows/lint.yml
with:
command: bundle exec brakeman
needs: build
scsslint:
name: SCSSLint
uses: ./.github/workflows/lint.yml
with:
command: bundle exec scss-lint --config .scss-lint.yml
needs: build
tests:
name: Backend
uses: ./.github/workflows/tests.yml
needs: build
e2e-admin:
name: Admin
uses: ./.github/workflows/cypress.yml
with:
pattern: spec/end-to-end/tests/admin/**.js
needs: [build, cypress]
e2e-frontend:
name: Frontend
uses: ./.github/workflows/cypress.yml
with:
pattern: spec/end-to-end/tests/frontend/**.js
needs: [build, cypress]
bundler-audit:
name: Bundler Audit
uses: ./.github/workflows/lint.yml
with:
command: bundle exec bundle-audit check --update
needs: build
eslint:
name: ESLint
uses: ./.github/workflows/lint.yml
with:
command: yarn eslint
image: gmmcal/gmmcal:cypress
needs: cypress
eslint_tests:
name: ESLint / Tests
uses: ./.github/workflows/lint.yml
with:
command: yarn eslint:tests
image: gmmcal/gmmcal:cypress
needs: cypress