Skip to content

Commit

Permalink
Run tests with GitHub Actions (#7)
Browse files Browse the repository at this point in the history
* Update to latest webpack to fix issue in Node >=17

cc webpack/webpack#14532

* Configure CI with GitHub Actions

* Rename files to fix case-sensitive filename issue
  • Loading branch information
bkeepers committed Mar 15, 2024
1 parent 9e834df commit 8a93596
Show file tree
Hide file tree
Showing 8 changed files with 629 additions and 688 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches: [master]
pull_request:

jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm install
- run: npm run build
- run: npm run test:ci
1,296 changes: 609 additions & 687 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -35,7 +35,7 @@
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack": "^5.90.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 8a93596

Please sign in to comment.