Skip to content

chore(deps-dev): bump @dsmjs/eslint-config from 1.0.126 to 1.0.127 #483

chore(deps-dev): bump @dsmjs/eslint-config from 1.0.126 to 1.0.127

chore(deps-dev): bump @dsmjs/eslint-config from 1.0.126 to 1.0.127 #483

Workflow file for this run

name: Node.js CI
'on':
push:
branches:
- master
- alpha
- beta
- 'dependabot/**'
pull_request:
types:
- opened
- synchronize
env:
FORCE_COLOR: 1
NPM_CONFIG_COLOR: always
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: npm
- run: npm clean-install
- run: npm test
release:
needs: verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: npm
- run: npm clean-install
- name: semantic-release
run: npx semantic-release
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
NPM_TOKEN: '${{ secrets.NPM_PUBLISH_TOKEN }}'
automerge:
needs: release
runs-on: ubuntu-latest
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GH_PAT }}