Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbbbbbbbbbbba committed Feb 18, 2024
1 parent 7b3b744 commit 004d532
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bbs-go-admin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -18,8 +18,8 @@ jobs:
node-version: ${{ matrix.node-version }}
# cache: "npm"
# cache-dependency-path: admin/package-lock.json
- name: npm install, build, and test
- name: pnpm install, build, and test
working-directory: ./admin
run: |
yarn
yarn build
pnpm install
pnpm build
2 changes: 1 addition & 1 deletion .github/workflows/bbs-go-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.21

- name: Get dependencies
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/bbs-go-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [ 16.x ]
node-version: [ 20.x ]

steps:
- uses: actions/checkout@v2
Expand All @@ -19,8 +19,8 @@ jobs:
node-version: ${{ matrix.node-version }}
# cache: 'npm'
# cache-dependency-path: site/package-lock.json
- name: npm install, build, and test
- name: pnpm install, build, and test
working-directory: ./site
run: |
yarn
yarn build
pnpm install
pnpm build

0 comments on commit 004d532

Please sign in to comment.