Skip to content

Commit 7145f13

Browse files
author
root
committed
ci: revert husky.yml changes and remove duplicate e2e workflow
1 parent 6f3a7b7 commit 7145f13

2 files changed

Lines changed: 13 additions & 41 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/husky.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
1+
# This is a basic workflow to help you get started with Actions
2+
13
name: CI
24

5+
# Controls when the action will run.
36
on:
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
1213
jobs:
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

0 commit comments

Comments
 (0)