Skip to content

Configure Renovate #198

Configure Renovate

Configure Renovate #198

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
tags:
- '*'
pull_request: {}
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
- run: yarn install --frozen-lockfile
- run: yarn lint
test:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['14', '16']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: yarn install --frozen-lockfile
- run: yarn test