Skip to content

chore(mailer): update mailer-ses peer dependencies (#139) #115

chore(mailer): update mailer-ses peer dependencies (#139)

chore(mailer): update mailer-ses peer dependencies (#139) #115

Workflow file for this run

name: Node.js CI - Publish
on:
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- name: Use Node.js 16.x
uses: actions/setup-node@v3.3.0
with:
node-version: 16
cache: yarn
- run: yarn install --immutable
- run: yarn build
- run: docker-compose up -d
- run: yarn test
- run: docker-compose down
- name: Publish
run: yarn workspaces foreach --no-private npm publish --tolerate-republish
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}