Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Sweep GHA Fix] Fix failing GitHub Actions #45

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Lint the codebase
run: npm run lint:ci
run: npm run lint:ci -- --max-warnings 0
test:
name: Test
runs-on: ubuntu-latest
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build code
run: npm run build:ci
run: npm run build:ci -- --silent
- name: Upload the dist folder
uses: actions/upload-artifact@v2.2.4
with:
Expand All @@ -64,7 +64,7 @@ jobs:
name: dist
path: dist
- name: Run integration tests
run: npm run test:integration:ci
run: npm run test:integration:ci -- --coverage --runInBand
build_storybook:
name: Build docs
runs-on: ubuntu-latest
Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@
* (af4e364) Bump version to 2.0.10 (Denis Tokarev)
* (ac4486b) Update the project changelog (github-actions[bot])
* (9d6f73d) Fix tests (#28) (github-actions[bot])
* (e9ec45b) Fix #29 (Denis Tokarev)
* (5b8ba34) Bump to 2.0.12 (Denis Tokarev)
* (83482cc) Fix #29 (#30) (github-actions[bot])
* (b3f1de1) Update the project changelog (github-actions[bot])
* (0581fdc) feat: Updated .github/workflows/ci.yml (sweep-ai[bot])
* (d0b7690) Update the project changelog (github-actions[bot])
* (8fd4292) feat: Updated .github/workflows/ci.yml (sweep-ai[bot])
* (4c1079e) Update the project changelog (github-actions[bot])
* (03b9f38) feat: Updated .github/workflows/ci.yml (sweep-ai[bot])
* (4991940) Update the project changelog (github-actions[bot])
* (b8f3996) feat: Updated .github/workflows/ci.yml (sweep-ai[bot])

## v2.0.9
* (a999686) Upgrade all deps and prepare v2.0.9 (Denis Tokarev)
Expand Down Expand Up @@ -47,6 +54,10 @@

## v2.0.2

## v2.0.12
* (9d6f73d) Fix tests (#28) (github-actions[bot])
* (83482cc) Fix #29 (#30) (github-actions[bot])

## v2.0.10
* (8aa1f79) Fix issue w/wrong setTimeout call (#10) (github-actions[bot])
* (a1cc16f) Further get rid of global variables (Denis Tokarev)
Expand Down
Loading