ci colour output

This commit is contained in:
silas-x 2023-01-26 10:40:20 +00:00
parent a334749b63
commit efec042cb3
2 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ on:
push:
jobs:
format:
build:
name: Build
runs-on: ubuntu-latest
steps:
@ -16,13 +16,13 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn ci
- name: Format
- name: Build
run: yarn build
semgrep:

View File

@ -4,7 +4,7 @@
"private": true,
"scripts": {
"setup": "yarn install && yarn allow-scripts && cd node_modules/bigint-buffer && yarn rebuild",
"ci": "yarn install --frozen-lockfile --network-concurrency 1 && yarn allow-scripts && cd node_modules/bigint-buffer && yarn rebuild",
"ci": "yarn install --frozen-lockfile --network-concurrency 1 --color=always && yarn allow-scripts && cd node_modules/bigint-buffer && yarn rebuild",
"dev": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",