Skip to content

Update dependabot config #317

Update dependabot config

Update dependabot config #317

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup 🔌
uses: actions/[email protected]
with:
node-version: 14.x
registry-url: https://registry.npmjs.org/
- name: Build 🔧
run: |
npm ci
npm run lint
npm t
- name: Publish 🚀
if: startsWith(github.ref, 'refs/tags/')
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}