Skip to content

Commit

Permalink
Merge pull request #7 from derivita/nathan/reviewdog
Browse files Browse the repository at this point in the history
Add CI Build for tests
  • Loading branch information
ribrdb authored Jul 19, 2024
2 parents ddfe15d + 556aec7 commit 6295cb6
Show file tree
Hide file tree
Showing 4 changed files with 12,834 additions and 2 deletions.
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

0 comments on commit 6295cb6

Please sign in to comment.