Skip to content

Bump webpack from 5.88.2 to 5.89.0 #176

Bump webpack from 5.88.2 to 5.89.0

Bump webpack from 5.88.2 to 5.89.0 #176

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
# https://github.com/actions/setup-node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Install Node dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Prettier
run: yarn prettier --check .
- name: Test
run: yarn jest --ci --coverage
- name: Publish test coverage
# https://github.com/codecov/codecov-action
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build docs
run: yarn typedoc