Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

chore: fix npm audit and aws-sdk #65

chore: fix npm audit and aws-sdk

chore: fix npm audit and aws-sdk #65

Workflow file for this run

name: CI - Master
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master,beta,alpha]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm ci
- run: npm run lint
- run: npm run type-check
- run: npm run test
release:
name: Build and Release
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm ci
- run: npm run build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}