-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
680e278
commit 08b7568
Showing
4 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Node.js CI | ||
|
||
on: | ||
push: | ||
branches: [TASK-cloudDB, ci-with-testing] | ||
pull_request: | ||
branches: [TASK-cloudDB, ci-with-testing] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} #ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] # macos-latest, windows-latest | ||
node-version: [16.x] | ||
#See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: "npm" | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm test | ||
- uses: akhileshns/[email protected] | ||
with: | ||
heroku_api_key: ${{ec86b22f-c068-4d5c-b1ba-feda0410744e}} | ||
heroku_app_name: "dog-grooming-api" | ||
heroku_email: "[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"files.exclude": { | ||
"amplify/.config": true, | ||
"amplify/**/*-parameters.json": true, | ||
"amplify/**/amplify.state": true, | ||
"amplify/**/transform.conf.json": true, | ||
"amplify/#current-cloud-backend": true, | ||
"amplify/backend/amplify-meta.json": true, | ||
"amplify/backend/awscloudformation": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* eslint-disable */ | ||
// WARNING: DO NOT EDIT. This file is automatically generated by AWS Amplify. It will be overwritten. | ||
|
||
const awsmobile = { | ||
aws_project_region: "us-west-2", | ||
}; | ||
|
||
export default awsmobile; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters