Fix build Postcss error (#353)

This commit is contained in:
Thomas Miceli 2024-10-24 23:37:04 +02:00 committed by GitHub
parent 2bf434f00e
commit ca44abfc43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 27 additions and 4 deletions

View file

@ -27,9 +27,9 @@ jobs:
- name: Lint - name: Lint
uses: golangci/golangci-lint-action@v3 uses: golangci/golangci-lint-action@v3
with: with:
version: v1.54 version: v1.54
skip-pkg-cache: true skip-pkg-cache: true
args: --out-format=colored-line-number --timeout=20m args: --out-format=colored-line-number --timeout=20m
- name: Format - name: Format
run: make fmt check_changes run: make fmt check_changes
@ -115,4 +115,25 @@ jobs:
go-version: ${{ matrix.go }} go-version: ${{ matrix.go }}
- name: Run tests - name: Run tests
run: make test TEST_DB_TYPE=${{ matrix.database }} run: make test TEST_DB_TYPE=${{ matrix.database }}
build:
name: Build
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
go: ["1.22"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.22
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
shell: bash
run: make

View file

@ -7,6 +7,8 @@ module.exports = {
], ],
theme: { theme: {
colors: { colors: {
transparent: 'transparent',
current: 'currentColor',
white: colors.white, white: colors.white,
black: colors.black, black: colors.black,
gray: { gray: {