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

Add CI Build for tests #7

Merged
merged 12 commits into from
Jul 19, 2024
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: [pull_request]
jobs:
tests:
name: runner / tests
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 11
cache: 'npm'
- run: npm install
- run: npm run test
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ gulp.task('styles-grid', () => {
gulp.task('closure', () => {
return gulp.src(SOURCES)
.pipe(closureCompiler({
compilerPath: 'node_modules/google-closure-compiler/compiler.jar',
compilerPath: 'node_modules/google-closure-compiler-java/compiler.jar',
fileName: 'material.closure.min.js',
compilerFlags: {
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
Expand Down
Loading