mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-22 20:42:40 +00:00
Fix build Postcss error (#353)
This commit is contained in:
parent
2bf434f00e
commit
ca44abfc43
2 changed files with 27 additions and 4 deletions
21
.github/workflows/go.yml
vendored
21
.github/workflows/go.yml
vendored
|
@ -116,3 +116,24 @@ jobs:
|
|||
|
||||
- name: Run tests
|
||||
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
|
||||
|
|
2
public/tailwind-embed.config.js
vendored
2
public/tailwind-embed.config.js
vendored
|
@ -7,6 +7,8 @@ module.exports = {
|
|||
],
|
||||
theme: {
|
||||
colors: {
|
||||
transparent: 'transparent',
|
||||
current: 'currentColor',
|
||||
white: colors.white,
|
||||
black: colors.black,
|
||||
gray: {
|
||||
|
|
Loading…
Reference in a new issue