-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
7 changed files
with
46 additions
and
178 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
name: Deploy to QA | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: [closed] | ||
|
||
jobs: | ||
deploy: | ||
if: ${{ github.event.pull_request.merged }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
- name: Run npm scripts | ||
env: | ||
CI: true | ||
AIO_RUNTIME_AUTH: ${{ secrets.AIO_RUNTIME_AUTH_QA }} | ||
AIO_RUNTIME_NAMESPACE: 245265-879aquaant-qa | ||
AIO_RUNTIME_APIHOST: 'https://adobeioruntime.net' | ||
run: | | ||
npm install | ||
npm run grammar | ||
npm run build | ||
npm run lint | ||
npm run test | ||
npm run deploy |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,23 +1,25 @@ | ||
name: Frontend Test | ||
name: Frontend | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "main" | ||
|
||
jobs: | ||
linting: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
- run: npm install | ||
- run: npm run grammar | ||
- run: npm run build | ||
- run: npm run lint | ||
- run: npm run test | ||
- name: Run npm scripts | ||
env: | ||
CI: true | ||
CI: true | ||
run: | | ||
npm install | ||
npm run grammar | ||
npm run build | ||
npm run lint | ||
npm run test |
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
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