Revise CI, Logging, DB Transactions, API Routes #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: would_deploy | |
on: | |
pull_request: | |
jobs: | |
would_deploy: | |
name: test ability to deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- name: install system dependencies & pnpm install | |
run: | | |
apt-get update && apt-get install nodejs npm -y | |
npm install -g pnpm | |
pnpm install | |
- name: install go dependencies | |
run: node_modules/.bin/just install_deps | |
- name: build | |
run: node_modules/.bin/just cd_build |