Skip to content

Merge pull request #44 from reidblomquist/add/iam-1155-failure-reasons #43

Merge pull request #44 from reidblomquist/add/iam-1155-failure-reasons

Merge pull request #44 from reidblomquist/add/iam-1155-failure-reasons #43

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request: {}
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '17.x.x'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install deps
run: |
npm ci
- run: npm run lint
- run: npm run test
- name: Publish
if: ${{github.ref == 'refs/heads/master'}}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm publish