Skip to content

Commit

Permalink
fix(ci): i hate yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Im-Beast committed Jun 29, 2024
1 parent 3aa153a commit 2f819c6
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&

0 comments on commit 2f819c6

Please sign in to comment.