Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
invertedEcho committed Jun 16, 2024
1 parent 754c9bc commit 4b91e73
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 20 deletions.
46 changes: 26 additions & 20 deletions .github/workflows/ci-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,29 @@ on:
- master
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
check:
name: Format, Lint, Types
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Check Format
run: pnpm format:check

- name: Check Lint
run: pnpm lint

- name: Check Types
run: pnpm types
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

defaults:
run:
working-directory: ./frontend

jobs:
check:
name: Format, Lint, Types
runs-on: ubuntu-latest

steps:
- uses: pnpm/action-setup@v4
with:
version: 8

- name: Check Format
run: pnpm format:check

- name: Check Lint
run: pnpm lint

- name: Check Types
run: pnpm types
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: update backend deployment

on:
push:
branches:
Expand Down

0 comments on commit 4b91e73

Please sign in to comment.