We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86f2f3c commit efb1cd5Copy full SHA for efb1cd5
.github/workflows/publish.yml
@@ -6,10 +6,10 @@ on:
6
workflow_dispatch:
7
8
jobs:
9
- chrome-tests:
+ tests-workflow:
10
uses: ./.github/workflows/tests.yml
11
publish:
12
- needs: [chrome-tests]
+ needs: [tests-workflow]
13
runs-on: ubuntu-latest
14
permissions:
15
contents: read
.github/workflows/tests.yml
@@ -1,6 +1,15 @@
1
name: Tests
2
3
-on: [push, pull_request]
+on:
4
+ pull_request:
5
+ branches:
+ - main
+ push:
+ tags-ignore:
+ - '*'
+ workflow_call:
cypress-run:
@@ -9,7 +18,7 @@ jobs:
18
- uses: actions/checkout@v3
19
- uses: actions/setup-node@v3
20
with:
- node-version: '16.x'
21
+ node-version: '21.x'
22
- name: Install dependencies
23
run: yarn
24
- name: Install Linux Webkit deps
0 commit comments