chore: update changelog to list 2.30.0 as breaking as per #485 #534
Workflow file for this run
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
name: Functional Test | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'chore(release):')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- run: git config --global user.email "ask-cli-test@amazon.com" | |
- run: git config --global user.name "Ask Cli Test" | |
- run: npm install | |
- run: npm link | |
- run: npm run functional-test | |
env: | |
ASK_VENDOR_ID: ${{ secrets.ASK_VENDOR_ID }} | |
ASK_REFRESH_TOKEN: ${{ secrets.ASK_REFRESH_TOKEN }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
DEBUG: true |