Skip to content

Bump @babel/traverse from 7.17.3 to 7.23.2 (#67) #26

Bump @babel/traverse from 7.17.3 to 7.23.2 (#67)

Bump @babel/traverse from 7.17.3 to 7.23.2 (#67) #26

Workflow file for this run

name: CI builds for Hubot Typetalk Adapter
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
hubot-version: [^3.0]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
npm install hubot@"${{ matrix.hubot-version }}"
- name: Run lint
run: |
npm run lint
- name: Run tests
run: |
npm test
- name: Send code coverage
run: |
npm run coverage