Skip to content

Commit

Permalink
refactor: revert to standard pnpm workflows, fix auth issue later
Browse files Browse the repository at this point in the history
  • Loading branch information
f3rno64 committed Feb 10, 2024
1 parent 96e0d61 commit a4a72e7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,32 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8

- name: Use Node.js 20
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 20
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Install dependencies
run: pnpm i

- name: Check Format
run: pnpm format:check

- name: Lint
run: pnpm lint:eslint

- name: Lint
run: pnpm lint
run: pnpm lint:markdownlint

- name: Run Prettier Check
run: pnpm format:prettier:check
- name: Build
run: pnpm build
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: pnpm i

- name: Check Format
run: pnpm format:prettier:check
run: pnpm format:check

- name: Lint
run: pnpm lint:eslint
Expand Down

0 comments on commit a4a72e7

Please sign in to comment.