Skip to content

chore(deps): update dependency chai to v5 #1170

chore(deps): update dependency chai to v5

chore(deps): update dependency chai to v5 #1170

Workflow file for this run

name: workflow
on: [push]
jobs:
job:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v1
- name: Prepare
run: npm ci
- name: Lint
uses: mooyoul/tslint-actions@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
pattern: '*.ts'
- name: Build
run: npm run build
- name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}