Skip to content

update github actions #391

update github actions

update github actions #391

Workflow file for this run

name: bbs-go-site
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# cache: 'npm'
# cache-dependency-path: site/package-lock.json
- name: pnpm install, build, and test
working-directory: ./site
run: |
pnpm install
pnpm build