Skip to content

Commit

Permalink
Browser tests to use Node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
ottokruse committed Jan 20, 2025
1 parent c65c5bb commit aae5353
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/browser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: install
run: |
npm install -g npm@9
npm install
- name: test
run: |
npm run pack-for-tests
npm run test:browser
env:
CI: "true"
6 changes: 4 additions & 2 deletions .github/workflows/codeguru.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: codeguru
on:
push:
branches:
- "main"
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

permissions:
id-token: write
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
npm run pack-for-tests
npm run test:install
npm run test:import
npm run test:browser
npm run test:speed
env:
CI: "true"

0 comments on commit aae5353

Please sign in to comment.