Skip to content

Commit

Permalink
Fix pr lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Antony1060 committed Aug 4, 2023
1 parent 1e6eb24 commit d5ee902
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,22 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install yarn
run: yarn
- name: Run ESLint
run: yarn lint
- uses: actions/checkout@v2
- name: Setup PNPM
uses: pnpm/[email protected]
with:
run_install: false
standalone: true
version: 8

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 19
cache: pnpm

- name: Install
run: pnpm install

- name: Lint
run: pnpm lint
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
with:
run_install: false
standalone: true
package_json_file: blog/package.json
version: 8

- name: Setup Node
Expand Down

0 comments on commit d5ee902

Please sign in to comment.