Skip to content

chore(deps): lock file maintenance #1730

chore(deps): lock file maintenance

chore(deps): lock file maintenance #1730

Workflow file for this run

name: workflow
on: [push]
jobs:
job:
runs-on: ubuntu-latest
container: node:lts
timeout-minutes: 15
steps:
- uses: actions/checkout@v1
- name: Prepare
run: npm ci
- name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: |
npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}