Skip to content

Commit

Permalink
github action commands to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Nov 13, 2024
1 parent a16c771 commit 74c667b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,27 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm test
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpm test

check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npx prettier --check .
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpx prettier --check .

check-typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run tsc
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpm tsc
2 changes: 1 addition & 1 deletion js/components/RecentUpdates.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<li>
<changelog-date :year="2024" :month="11" :day="13"></changelog-date>
- Added <strong>Mona Lisa Checkmate</strong> trophy
<br>
<br />
&nbsp; Credit to
<span class="dotted-underline text-sky-900 cursor-pointer" @click.prevent="formFill('chesscom', 'KNVB')">GM Aman Hambleton</span>
from Chessbrah. <a href="https://youtu.be/XAlcDWQ6iTM?t=387" class="dotted-underline text-sky-900" target="_blank">See video here</a>
Expand Down

0 comments on commit 74c667b

Please sign in to comment.