Skip to content

Commit

Permalink
Merge pull request #644 from Shreyas-vgr/2.0.x
Browse files Browse the repository at this point in the history
Eslint and Github actions workflows migration
  • Loading branch information
Shreyas-vgr committed Aug 17, 2020
2 parents 95c8758 + 4d3f9b2 commit 7e03436
Show file tree
Hide file tree
Showing 102 changed files with 2,182 additions and 2,124 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ask-sdk-express-adapter-unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Unit Tests on ask-sdk-express-adapter

on:
push:
branches:
- 2.0.x
paths:
- 'ask-sdk-express-adapter/**'
pull_request:
branches:
- 2.0.x
paths:
- 'ask-sdk-express-adapter/**'

defaults:
run:
working-directory: ask-sdk-express-adapter

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [10, 12]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run test
34 changes: 34 additions & 0 deletions .github/workflows/ask-sdk-unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Unit Tests on ask-sdk

on:
push:
branches:
- 2.0.x
paths:
- 'ask-sdk/**'
pull_request:
branches:
- 2.0.x
paths:
- 'ask-sdk/**'

defaults:
run:
working-directory: ask-sdk

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [10, 12]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run test
34 changes: 34 additions & 0 deletions .github/workflows/ask-sdk-v1adapter-unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Unit Tests on ask-sdk-v1adapter

on:
push:
branches:
- 2.0.x
paths:
- 'ask-sdk-v1adapter/**'
pull_request:
branches:
- 2.0.x
paths:
- 'ask-sdk-v1adapter/**'

defaults:
run:
working-directory: ask-sdk-v1adapter

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [10, 12]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run test
34 changes: 34 additions & 0 deletions .github/workflows/ask-smapi-sdk-unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Unit Tests on ask-smapi-sdk

on:
push:
branches:
- 2.0.x
paths:
- ask-smapi-sdk/**'
pull_request:
branches:
- 2.0.x
paths:
- ask-smapi-sdk/**'

defaults:
run:
working-directory: ask-smapi-sdk

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [10, 12]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run test
3 changes: 2 additions & 1 deletion ask-sdk-core/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ lib/
node_modules/
tst/
package-lock.json
tsconfig.json
tsconfig.json
.eslintrc.json
4 changes: 1 addition & 3 deletions ask-sdk-dynamodb-persistence-adapter/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ doc/
lib/
node_modules/
tst/
gulpfile.js
gulpfile-base.js
package-lock.json
tsconfig.json
tslint.json
.eslintrc.json

0 comments on commit 7e03436

Please sign in to comment.