Skip to content

Commit

Permalink
refactor(ci): improve readability of workflow code with comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ruru-m07 committed Aug 1, 2024
1 parent e9336bb commit b6596c4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: Lint

# Controls when the action will run. Triggers the workflow on push or pull request
on:
pull_request:
branches: ["*"]
push:
branches: ["*"]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "lint"
lint:
runs-on: ubuntu-latest

Expand All @@ -31,6 +36,7 @@ jobs:
- name: Run ESLint
run: pnpm lint --filter=./packages/*

# This workflow contains a single job called "build"
build:
runs-on: ubuntu-latest

Expand Down

0 comments on commit b6596c4

Please sign in to comment.