Skip to content

build(deps): bump next from 12.1.5 to 14.2.15 #159

build(deps): bump next from 12.1.5 to 14.2.15

build(deps): bump next from 12.1.5 to 14.2.15 #159

Workflow file for this run

name: Check the source code
on:
pull_request:
jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
# unable to use yarn in actions/setup-node@v3 https://github.com/actions/setup-node/issues/182#issuecomment-966885975
- name: Install Yarn
run: npm install -g yarn
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: yarn
- name: Install packages
run: yarn
- name: Lint
run: yarn lint
- name: Jest
run: yarn jest