Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
cache: 'npm'

- name: Install Dependencies
run: npm install
run: rm package-lock.json && npm install

- name: Lint
run: npm run lint
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# cache: 'npm'

# - name: Install Dependencies
# run: npm install
# run: rm package-lock.json && npm install

# - name: Create and populate .env file
# env:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
cache: 'npm'

- name: Install Dependencies
run: npm install
run: rm package-lock.json && npm install

- name: Cypress run
uses: cypress-io/github-action@v4
Expand All @@ -66,7 +66,7 @@ jobs:
cache: 'npm'

- name: Install Dependencies
run: npm install
run: rm package-lock.json && npm install

- name: Build Storybook
run: npm run build-storybook --quiet
Expand Down
Loading