Skip to content

Bump next from 12.1.5 to 14.2.15 #42

Bump next from 12.1.5 to 14.2.15

Bump next from 12.1.5 to 14.2.15 #42

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint_and_test:
name: Lint and test
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 16
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Test
run: yarn test