Skip to content

build(deps): bump next from 13.4.7 to 13.5.0 #48

build(deps): bump next from 13.4.7 to 13.5.0

build(deps): bump next from 13.4.7 to 13.5.0 #48

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- name: Set Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Run test
run: |
yarn test:ci
- name: Collect coverage
run: |
yarn coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}