File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # This is a basic workflow to help you get started with Actions
2+
13name : CI
24
5+ # Controls when the action will run.
36on :
4- push :
5- branches-ignore :
6- - main
7- pull_request :
8- branches-ignore :
9- - main
10- workflow_dispatch :
7+ # Triggers the workflow on push or pull request events but only for the main branch
8+ - push
9+ # Allows you to run this workflow manually from the Actions tab
10+ - workflow_dispatch
1111
12+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
1213jobs :
13- lint-and-unit :
14+ lint-and-prettify :
15+ # The type of runner that the job will run on
1416 runs-on : ubuntu-latest
17+
18+ # Steps represent a sequence of tasks that will be executed as part of the job
1519 steps :
20+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
1621 - uses : actions/checkout@v4
1722 - uses : pnpm/action-setup@v4
1823 - uses : actions/setup-node@v4
You can’t perform that action at this time.
0 commit comments