Skip to content

chore: add deepsource #36

chore: add deepsource

chore: add deepsource #36

Workflow file for this run

name: Node.js Package
on:
push:
branches:
- master
- next
- next-major
- alpha
- beta
jobs:
build-test-and-publish:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/better-dni
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn
- run: yarn run build
- run: yarn test
- run: yarn run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}