Skip to content

Commit

Permalink
try other thing
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Jan 4, 2024
1 parent 5cbbce2 commit 694da0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
run: pnpm run build

- name: Test
run: NODE_VERSION=${{ matrix.node }} cd packages/temporal-polyfill && pnpm run test
run: NODE_VERSION=${{ matrix.node }} pnpm run test
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
"scripts": {
"preinstall": "npx only-allow pnpm",
"ci": "pnpm run clean && pnpm run lint && pnpm run build && pnpm run test",
"build": "cd ./packages/temporal-polyfill && pnpm run build",
"dev": "cd ./packages/temporal-polyfill && pnpm run dev",
"test": "cd ./packages/temporal-polyfill && pnpm run test",
"lint": "cd ./packages/temporal-polyfill && pnpm run lint",
"clean": "cd ./packages/temporal-polyfill && pnpm run clean"
"build": "pnpm --filter temporal-polyfill run build",
"dev": "pnpm --filter temporal-polyfill run dev",
"test": "pnpm --filter temporal-polyfill run test",
"lint": "pnpm --filter temporal-polyfill run lint",
"clean": "pnpm --filter temporal-polyfill run clean"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.1",
Expand Down

0 comments on commit 694da0f

Please sign in to comment.