chore(deps): update dependency debug to v4.3.7 #178
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v3 | |
# Install NPM dependencies, cache them correctly | |
# https://github.com/bahmutov/npm-install | |
- uses: bahmutov/npm-install@v1 | |
- name: Check dependencies | |
run: npm audit report | |
- name: Build 👷 | |
run: npm run build | |
- run: npm run lint-ci | |
- run: npm test | |
- name: Semantic Release 🚀 | |
uses: cycjimmy/semantic-release-action@v3 | |
with: | |
branches: master | |
env: | |
# github token is automatically created by the GH Action workflow | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# created using semantic-release | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |