Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
version: 2

registries:
npm-github:
type: npm-registry
Expand All @@ -10,7 +9,6 @@ registries:
url: https://github.com
username: x-access-token
password: '${{ secrets.GH_TOKEN }}'

updates:
- package-ecosystem: npm
schedule:
Expand All @@ -27,7 +25,14 @@ updates:
registries:
- npm-github
- git-github

cooldown:
default-days: 7
exclude:
- '@typeform/*'
ignore:
- dependency-name: semantic-release
versions:
- '>=25.0.0'
- package-ecosystem: github-actions
schedule:
interval: weekly
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ jobs:
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile

- name: Install Cypress binary
run: yarn cypress install

- run: yarn build
- run: yarn test:functional

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/visual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile

- name: Install Cypress binary
run: yarn cypress install

- run: yarn build

- run: yarn test:visual
Expand Down
2 changes: 2 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ignore-scripts true
save-exact true
Loading