Skip to content

Remove dependabot

Remove dependabot #404

Workflow file for this run

name: Build
on:
push:
schedule:
- cron: '0 14 * * 1'
jobs:
build:
name: 'Lint, Build, & Test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '17.x'
- run: npm install
- run: npm run lint
- run: npm run build
- name: Verify build files have been committed
run: git diff --compact-summary --exit-code HEAD
- run: npm test
release:
name: 'Release'
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '17.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}