Skip to content

Commit

Permalink
Merge pull request #660 from shirblc/fix/upgrade_dependencies
Browse files Browse the repository at this point in the history
Upgraded Dependencies and Added Tests to CI
  • Loading branch information
squidfunk authored Apr 4, 2022
2 parents deb1a5f + dd20415 commit 4e3a215
Show file tree
Hide file tree
Showing 6 changed files with 11,108 additions and 4,383 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
# Build theme
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]

steps:

# Limit clone depth to speed up build
Expand All @@ -39,7 +43,7 @@ jobs:
# Install Node runtime and dependencies
- uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: ${{ matrix.node-version }}

- uses: actions/cache@v1
id: cache-node
Expand All @@ -53,10 +57,8 @@ jobs:
# Run linter and build distribution files
- run: npm run lint
- run: npm run build
# - run: npm run test
# env:
# SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
# SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
- run: npm run test
- run: npm run test:integration

# Upload coverage report to codecov.io
# - run: |
Expand Down
Loading

0 comments on commit 4e3a215

Please sign in to comment.