Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Mar 31, 2024
1 parent 4d50eb3 commit 09689db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 27 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,33 +44,10 @@ jobs:
- name: Install dependencies
run: |
pnpm install
pnpm -r build
- name: Typecheck
run: pnpm typecheck

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 21

- name: Install pnpm
run: |
corepack enable
corepack prepare pnpm@latest --activate
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm -C packages/bentocache build

tests:
runs-on: ubuntu-latest
timeout-minutes: 10
Expand All @@ -91,7 +68,6 @@ jobs:
- name: Install dependencies
run: |
pnpm install
pnpm -r build
- name: Run tests
run: FORCE_COLOR=1 pnpm test
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck": "pnpm run -r --parallel typecheck",
"lint": "eslint . --ext=.ts",
"test": "pnpm test --parallel"
"test": "pnpm run -r --parallel test"
},
"devDependencies": {
"@adonisjs/eslint-config": "^1.3.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"hot-runner": "build/bin/run.js"
},
"scripts": {
"build": "tsc"
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@adonisjs/ace": "^13.0.0",
Expand Down

0 comments on commit 09689db

Please sign in to comment.