Skip to content

Commit

Permalink
try and fix it all
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Dec 1, 2023
1 parent d2e5253 commit c8398ac
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,13 @@ jobs:
./components
./node_modules
- name: Remove Postinstall Script
run: npm pkg set scripts.postinstall="echo no-postinstall"

- name: Install Dependencies
run: yarn install --frozen-lockfile
env:
CI: true

- name: Build each test project
run: ./test/test-all-projects.sh
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
./components
./node_modules
- name: Remove Postinstall Script
run: npm pkg set scripts.postinstall="echo no-postinstall"

- name: Install Dependencies
run: yarn install --frozen-lockfile
env:
CI: true

- name: Set committer info
## attribute the commit to cypress-bot: https://github.community/t/logging-into-git-as-a-github-app/115916
run: |
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
./components
./node_modules
- name: Remove Postinstall Script
run: npm pkg set scripts.postinstall="echo no-postinstall"

- name: Install Dependencies
run: yarn install --frozen-lockfile
env:
CI: true

- name: Lint all files
run: yarn eslint .

Expand Down

0 comments on commit c8398ac

Please sign in to comment.