Skip to content

chore(deps): update dependency mocha to v10.6.0 #168

chore(deps): update dependency mocha to v10.6.0

chore(deps): update dependency mocha to v10.6.0 #168

Workflow file for this run

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 }}