Skip to content

chore: add Dependabot for updates #463

chore: add Dependabot for updates

chore: add Dependabot for updates #463

Workflow file for this run

name: Pull request
on:
pull_request:
branches: [master]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
with:
options: ". -l 79 --check"
test:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
# Test on every node version that is supported
# by our package.json.
# Hopefully this allows us to catch problems
# with differing versions ahead of time.
node-version: [19.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: npm
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test