Skip to content

chore: setup eslint & prettier #6

chore: setup eslint & prettier

chore: setup eslint & prettier #6

Workflow file for this run

name: Main Workflow
on:
pull_request:
types: [opened, synchronize]
branches:
- dev
- main
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/build.yml
lint:
uses: ./.github/workflows/lint.yml
needs: build
test:
uses: ./.github/workflows/test.yml
needs: lint
test-integration:
uses: ./.github/workflows/test-integration.yml
needs: lint