This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
chore(deps-dev): bump jest and @types/jest #1058
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: 'build-test' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm install | |
- run: npm run lint | |
- run: npm run format-check | |
- run: npm run build | |
- run: npm test | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test invalid JSON | |
id: json | |
continue-on-error: true | |
uses: ./ | |
with: | |
detail: invalid | |
- name: Check invalid JSON | |
run: 'test "${{ steps.json.outputs.error }}" == "detail is not valid JSON. SyntaxError: Unexpected token i in JSON at position 0"' | |
- name: Test missing inputs | |
id: inputs | |
continue-on-error: true | |
uses: ./ | |
with: | |
detail: ${{ toJSON(github.event) }} | |
- name: Check missing inputs | |
run: 'test "${{ steps.inputs.outputs.error }}" == "Input required and not supplied: event-bus-name"' | |
- name: Test push to EventBridge | |
if: env.AWS_ACCESS_KEY_ID != '' | |
uses: ./ | |
with: | |
event-bus-name: github-actions-test | |
source: com.articulate.aws-eventbridge-action | |
detail-type: github-action | |
detail: ${{ toJSON(github.event) }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_SESSION_TOKEN: ${{ secrets.AWS_SESSION_TOKEN }} |