Skip to content

Bump next from 13.5.6 to 14.1.1 #152

Bump next from 13.5.6 to 14.1.1

Bump next from 13.5.6 to 14.1.1 #152

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os:
- macos
- windows
- ubuntu
node-version:
- '16.x'
name: build
runs-on: ${{ matrix.os }}-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install dependencies
run: npm ci
- name: run build
run: npm run build
- name: run lint
run: npm run lint
- name: run test
run: npm run test
- name: upload coverage reports to codecov
uses: codecov/codecov-action@v3