Skip to content

feat: expose oneTime option to add the Point of Initiation Method #39

feat: expose oneTime option to add the Point of Initiation Method

feat: expose oneTime option to add the Point of Initiation Method #39

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn test
- name: Run Build
run: yarn build
- name: Run Semantic-Release
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}