Mirror for https://github.com/STBoyden/go-portfolio
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add new would_deploy workflow

stboyden.com 792ef54e a3c9e1b2

verified
+31
+1
.github/workflows/lint.yml
··· 3 3 push: 4 4 branches: 5 5 - main 6 + - develop 6 7 - master 7 8 pull_request: 8 9
+30
.github/workflows/would_deploy.yml
··· 1 + name: would_deploy 2 + on: 3 + push: 4 + branches: 5 + - develop 6 + pull_request: 7 + branches: 8 + - develop 9 + 10 + jobs: 11 + would_deploy: 12 + name: test ability to deploy 13 + runs-on: ubuntu-latest 14 + steps: 15 + - uses: actions/checkout@v4 16 + - uses: actions/setup-go@v5 17 + with: 18 + go-version: stable 19 + 20 + - name: install system dependencies & pnpm install 21 + run: | 22 + apt-get update && apt-get install nodejs npm -y 23 + npm install -g pnpm 24 + pnpm install 25 + 26 + - name: install go dependencies 27 + run: node_modules/.bin/just install_deps 28 + 29 + - name: build 30 + run: node_modules/.bin/just cd_build