Skip to content

[Snyk] Security upgrade @slack/bolt from 3.21.1 to 3.21.4 #73

[Snyk] Security upgrade @slack/bolt from 3.21.1 to 3.21.4

[Snyk] Security upgrade @slack/bolt from 3.21.1 to 3.21.4 #73

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.tool-versions'
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: v1-node_modules-${{ hashFiles('package-lock.json') }}-${{ github.head_ref }}
restore-keys: |
v1-node_modules-${{ hashFiles('package-lock.json') }}-
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test:coverage