🌱 Bump docker/build-push-action from 2a53c6ccda456d31fb62eedc658aae06e238b7bd to af64c4e18f18907592d87ebdea2882bc1f27a07a #4
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: ["*"] | |
jobs: | |
go-build: | |
name: Pocketbase Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: pb | |
strategy: | |
matrix: | |
goVer: [1.22] | |
steps: | |
- name: Set up Go ${{ matrix.goVer }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.goVer }} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
go mod vendor | |
- name: Test | |
run: | | |
go test -v ./... | |
- name: Build | |
run: | | |
go build -v ./... | |
ui-lint: | |
name: Frontend Lint | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: sk | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: npm install --legacy-peer-deps | |
- name: Lint | |
run: npm run lint | |
ui-check: | |
name: Frontend Check | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: sk | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: npm install --legacy-peer-deps | |
- name: Check | |
run: npm run check | |
ui-build: | |
name: Frontend Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: sk | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: npm install --legacy-peer-deps | |
- name: Build | |
run: npm run build |