This repository has been archived by the owner on Aug 3, 2024. It is now read-only.
build(deps-dev): bump postcss from 8.4.21 to 8.4.31 in /internal/server/web #84
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
# This workflow will build a golang project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | |
name: Unit Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.20.1" | |
cache: true | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7.27.1 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12.1 | |
cache: "pnpm" | |
cache-dependency-path: "**/pnpm-lock.yaml" | |
- name: Build frontend | |
run: | | |
npm i -g pnpm | |
pnpm install --dir internal/server/web --frozen-lockfile && pnpm run --dir internal/server/web build | |
- name: Download packages | |
run: go mod download | |
- name: Run tests | |
run: go test $(go list ./... | grep -v /tests) # Exclude the tests directory |