Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gc committed Sep 10, 2024
1 parent 2920e29 commit ef08b02
Showing 1 changed file with 40 additions and 37 deletions.
77 changes: 40 additions & 37 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,45 @@
name: Unit Tests

on:
push:
branches:
- master
pull_request:
push:
branches:
- master
pull_request:

jobs:
test:
name: Tests
runs-on: ubuntu-latest

steps:
- name: Checkout Project
uses: actions/checkout@v4

- run: corepack enable
- run: corepack install

- name: Install NodeJS
uses: actions/setup-node@v4
with:
cache: yarn
node-version: 20

- name: Restore CI Cache
uses: actions/cache@v4
with:
path: node_modules
key: NODE-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: Install Dependencies
run: yarn --immutable

- name: Fix package.json
run: npx biome check --write package.json

- name: Test
run: |
yarn test
npm i -g dpdm && dpdm --exit-code circular:1 --progress=false --warning=false --tree=false ./dist/index.js
test:
name: Tests
runs-on: ubuntu-latest

steps:
- name: Checkout Project
uses: actions/checkout@v4

- run: corepack enable
- run: corepack install

- name: Install NodeJS
uses: actions/setup-node@v4
with:
cache: yarn
node-version: 20

- name: Restore CI Cache
uses: actions/cache@v4
with:
path: node_modules
key: NODE-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: Install Dependencies
run: yarn --immutable

- name: Fix package.json
run: npx biome check --write package.json

- name: Build
run: tsc -p src

- name: Test
run: |
yarn test
npm i -g dpdm && dpdm --exit-code circular:1 --progress=false --warning=false --tree=false ./dist/index.js

0 comments on commit ef08b02

Please sign in to comment.