update circleci workflow #107
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: code checks | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/pnpm-install | |
- name: Typescript Check | |
run: pnpm typescript | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/dangerous-git-checkout | |
- uses: ./.github/actions/pnpm-install | |
- name: Prettier check | |
run: pnpm prettier --check | |
- name: Lint | |
run: pnpm lint | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/dangerous-git-checkout | |
- uses: ./.github/actions/pnpm-install | |
- name: Analyze with SonarCloud | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.projectKey=natserract_frontend-automation | |
-Dsonar.organization=natserract | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/dangerous-git-checkout | |
- uses: ./.github/actions/pnpm-install | |
- uses: ./.github/actions/playwright-install | |
- name: Run e2e test | |
run: pnpm test:e2e:ci | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/dangerous-git-checkout | |
- uses: ./.github/actions/pnpm-install | |
- name: Run unit test | |
run: pnpm test:unit | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/dangerous-git-checkout | |
- uses: ./.github/actions/pnpm-install | |
- run: pnpm build | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
required: | |
if: always() | |
needs: [lint, type-check, e2e, unit-test, build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: fail if conditional jobs failed | |
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') | |
run: exit 1 |