Skip to content

IS-3059 - Fix typo in package.json #158

IS-3059 - Fix typo in package.json

IS-3059 - Fix typo in package.json #158

Workflow file for this run

name: "units-test"
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
# unit tests
units:
runs-on: ubuntu-latest
steps:
- uses: Brightspace/third-party-actions@actions/checkout
- run: npm ci
# test action works running from the graph
test:
runs-on: ubuntu-latest
steps:
- uses: Brightspace/third-party-actions@actions/checkout
- id: parse
uses: ./
with:
sqs-queue-url: https://sqs.us-east-1.amazonaws.com/111111111111/test
- run: "echo aws-account-id: ${{ steps.parse.outputs.aws-account-id }}"
- run: "echo aws-region: ${{ steps.parse.outputs.aws-region }}"
- run: "echo sqs-queue-name: ${{ steps.parse.outputs.sqs-queue-name }}"