Skip to content

Commit

Permalink
Remove gulp
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminVanRyseghem committed Sep 2, 2023
1 parent 9284481 commit 5c9867a
Show file tree
Hide file tree
Showing 16 changed files with 3,182 additions and 11,623 deletions.
3 changes: 0 additions & 3 deletions .babelrc.js

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Coverage
on:
pull_request:
branches: [ develop ]
jobs:
check:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ 16.x, 18.x, 20.x ]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install
run: npm install

- name: Instrument coverage
run: npm run coverage:instrument

- name: Check coverage
run: npm run coverage:check

- name: Check coverage
if: failure()
run: npm run coverage:report

- name: Exporting report
uses: actions/upload-artifact@v3
if: failure()
with:
name: coverage
path: |
./coverage
if-no-files-found: ignore
29 changes: 0 additions & 29 deletions .github/workflows/gulp.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
run: npm install

- name: Eslint
run: npm lint
run: npm run lint
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test
on:
pull_request:
branches: [ develop ]
jobs:
check:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ 16.x, 18.x, 20.x ]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install
run: npm install

- name: Build
run: npm run build

- name: Jasmine
run: npm run test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ coverage/
dist/
/languages.js
/languages.unmin.js
.nyc_output/
6 changes: 6 additions & 0 deletions .nycrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"all": true,
"include": [
"src/**/*.js"
]
}
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

195 changes: 0 additions & 195 deletions gulpfile.js

This file was deleted.

37 changes: 0 additions & 37 deletions integrationTests/amd/test-main.js

This file was deleted.

Loading

0 comments on commit 5c9867a

Please sign in to comment.