Skip to content

chore(docs): add to readme #2

chore(docs): add to readme

chore(docs): add to readme #2

Workflow file for this run

name: Node.js Package
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- run: yarn install --immutable
- run: yarn build
- run: yarn lint
- run: yarn test
publish-npm:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
id-token: write
pull-requests: write
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- run: yarn install --immutable
- run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SESAMECARE_OSS_NPM_TOKEN }}
run: |
yarn dlx semantic-release