Skip to content

Commit

Permalink
update and fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
samualtnorman committed Mar 20, 2024
1 parent cc825f3 commit 841b0ef
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 87 deletions.
68 changes: 0 additions & 68 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/lint.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- { name: Checkout, uses: actions/checkout@v3.5.3 }
- { name: Setup Node.js environment, uses: actions/setup-node@v3.8.1, with: { node-version: 18.x } }
- { name: Setup pnpm, uses: pnpm/action-setup@v2.4.0, with: { version: 8.6.x, run_install: true } }
- { name: Checkout, uses: actions/checkout@v4 }
- { name: Setup Node.js environment, uses: actions/setup-node@v4, with: { node-version: ^18 } }
- { name: Setup pnpm, uses: pnpm/action-setup@v3, with: { version: ^8.15.5, run_install: true } }
- run: git config --global user.email github-action@users.noreply.github.com
- run: git config --global user.name "Github Action"
- run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- { name: Checkout, uses: actions/checkout@v3.5.3 }
- { name: Setup Node.js environment, uses: actions/setup-node@v3.8.1, with: { node-version: 18.x } }
- { name: Setup pnpm, uses: pnpm/action-setup@v2.4.0, with: { version: 8.6.x, run_install: true } }
- run: pnpm test
- { name: Checkout, uses: actions/checkout@v4 }
- { name: Setup Node.js environment, uses: actions/setup-node@v4, with: { node-version: ^18 } }
- { name: Setup pnpm, uses: pnpm/action-setup@v3, with: { version: ^8.15.5, run_install: true } }
- run: pnpm lint
- run: pnpm test

0 comments on commit 841b0ef

Please sign in to comment.