Skip to content

Bump follow-redirects and @slack/bolt #41

Bump follow-redirects and @slack/bolt

Bump follow-redirects and @slack/bolt #41

Workflow file for this run

name: Linter
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and lint
run: |
npm ci
npm run build --if-present
npm run lint
env:
CI: true