From 2f819c6fb1cb264f458f1b5493cfc5b03b7a0f0b Mon Sep 17 00:00:00 2001 From: Im-Beast Date: Sat, 29 Jun 2024 10:40:41 +0200 Subject: [PATCH] fix(ci): i hate yaml --- .github/workflows/node.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index bf58092..4270c0d 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -17,17 +17,19 @@ jobs: steps: - name: Setup repo uses: actions/checkout@v4 - + - name: Setup node uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - + - name: Prepare environment - run: 'echo ''{ "type": "module" }'' > package.json' \ - npx jsr add @beast/compat @std/assert + run: | + 'echo ''{ "type": "module" }'' > package.json' \ + npx jsr add @beast/compat @std/assert - name: Run tests - run: npx --yes tsx --test **/*.test.ts && \ - NO_COLOR=1 npx --yes tsx --test **/*.test.ts && \ - COLORTERM='' TERM='' npx --yes tsx --test **/*.test.ts && + run: | + npx --yes tsx --test **/*.test.ts && \ + NO_COLOR=1 npx --yes tsx --test **/*.test.ts && \ + COLORTERM='' TERM='' npx --yes tsx --test **/*.test.ts &&