Skip to content

Commit

Permalink
Changes for the next releases (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandercerutti authored Feb 17, 2024
2 parents d6f12bf + 66961c7 commit 417d6d8
Show file tree
Hide file tree
Showing 33 changed files with 7,609 additions and 34,695 deletions.
8 changes: 0 additions & 8 deletions .changeset/README.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/config.json

This file was deleted.

19 changes: 13 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,22 @@ jobs:
name: Testing Workflow Linux
runs-on: ubuntu-latest
steps:
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
check-latest: true
- run: |
npm ci
npm run build
npx playwright install --with-deps
npm run test
cache: "pnpm"
- name: Install dependencies
run: |
pnpm install
pnpm dlx playwright install --with-deps
- name: Building and running tests
run: |
pnpm build
pnpm test
cd packages/captions-renderer
npm run test:e2e
pnpm test:e2e
9 changes: 5 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@
"request": "launch",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"env": {
"NODE_OPTIONS": "--experimental-vm-modules --no-warnings"
},
"runtimeExecutable": "pnpm",
"cwd": "${workspaceFolder}",
"args": [
"--experimental-vm-modules",
"--no-warnings",
"${workspaceRoot}/node_modules/.bin/jest",
"jest",
"-c",
"${workspaceRoot}/jest.config.mjs",
"--runInBand",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"editor.trimAutoWhitespace": true,
"editor.detectIndentation": true,

"jest.jestCommandLine": "node --experimental-vm-modules --no-warnings ./node_modules/.bin/jest -c jest.config.mjs --runInBand"
"jest.jestCommandLine": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" pnpm jest -c jest.config.mjs --runInBand"
}
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"workspaces": ["packages/*"],
"version": "independent"
"version": "independent",
"npmClient": "pnpm"
}
Loading

0 comments on commit 417d6d8

Please sign in to comment.