Skip to content

chore: add dependabot configuration #792

chore: add dependabot configuration

chore: add dependabot configuration #792

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
testing:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
node-version: [16.x]
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
run: npm ci
- name: Prepare tests
run: npm run pretest:ci
- name: Unit tests
run: npm run test:unit:ci