Skip to content

Commit be5af9c

Browse files
committed
u
1 parent 7b49f5b commit be5af9c

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ jobs:
3232
shell: bash
3333
run: |
3434
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
35-
env:
36-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3735
3836
- name: Setup pnpm cache
3937
uses: actions/cache@v4
@@ -45,8 +43,6 @@ jobs:
4543
4644
- name: Install dependencies
4745
run: pnpm install --frozen-lockfile
48-
env:
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5046

5147
- name: Lint code
5248
run: pnpm lint

.github/workflows/copilot-setup-steps.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ jobs:
2323
name: Setup Development Environment for Copilot
2424
runs-on: ubuntu-latest
2525
steps:
26-
# Checkout full repo for git history.
2726
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28-
with:
29-
persist-credentials: false
3027

3128
- name: Setup Node.js
3229
uses: actions/setup-node@v4
3330
with:
34-
node-version: '20'
31+
node-version: 'lts/*'
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3534

3635
- name: Setup pnpm
3736
uses: pnpm/action-setup@v4
@@ -43,4 +42,4 @@ jobs:
4342
run: pnpm lint
4443

4544
- name: Build project
46-
run: pnpm build
45+
run: pnpm build

0 commit comments

Comments
 (0)