Skip to content

Commit

Permalink
Excluded autogenerated files from repo except for documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fasttime committed Jun 26, 2021
1 parent 987208a commit 99c80cf
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10,015 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/JScrewIt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:

lint:
build:

runs-on: ubuntu-latest

Expand All @@ -15,11 +15,18 @@ jobs:
node-version: 16.x
- run: npm install
- run: gulp lint
- run: gulp bundle:lib
- uses: actions/upload-artifact@v2
with:
name: lib
path: lib

test:

name: test (Node.js ${{ matrix.node-version }})

needs: build

runs-on: ubuntu-latest

strategy:
Expand All @@ -32,4 +39,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm install ebdd expectations mocha@3 postrequire
- uses: actions/download-artifact@v2
with:
name: lib
path: lib
- run: npm test
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
!.npmrc
*.cpuprofile
/jsdoc
/lib/**/*.js
/lib/feature-all.d.ts
/packages/**/lib
/packages/**/test/node-legacy
/test/spec-runner.html
/ui/**/*.js
coverage/
node_modules/
npm-debug.log
Loading

0 comments on commit 99c80cf

Please sign in to comment.