Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 63454a4cfd | |||
| 5fe492c011 | |||
| 9f5891169e | |||
| 0470d9445a | |||
| 07128b89af | |||
| 1fdeb716ca | |||
| 1b99f0e2c1 |
@@ -12,15 +12,17 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
|
||||
- run: bun install
|
||||
- run: corepack enable && pnpm install
|
||||
|
||||
- name: Build
|
||||
run: bun run build
|
||||
run: pnpm run build
|
||||
|
||||
- name: Lint
|
||||
run: bun run check
|
||||
run: pnpm run check
|
||||
|
||||
- name: Test
|
||||
run: bun run test:ci
|
||||
run: pnpm run test:ci
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
"scripts": {
|
||||
"prepublishOnly": "echo 'Use pnpm run release from repo root' && exit 1",
|
||||
"test": "vitest run __tests__/",
|
||||
"test:ci": "vitest run __tests__/"
|
||||
"test:ci": "vitest run __tests__/ --exclude __tests__/integration/"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ocas/core": "^0.3.0",
|
||||
|
||||
@@ -1,2 +1,8 @@
|
||||
packages:
|
||||
- 'packages/*'
|
||||
|
||||
allowBuilds:
|
||||
esbuild: true
|
||||
msw: true
|
||||
|
||||
minimumReleaseAge: 0
|
||||
|
||||
Reference in New Issue
Block a user