Skip to content

Bump webpack from 5.76.0 to 5.94.0 #515

Bump webpack from 5.76.0 to 5.94.0

Bump webpack from 5.76.0 to 5.94.0 #515

Workflow file for this run

name: CI
on:
# Postsubmit CI on main.
push:
branches: [main]
# Presubmit CI on PRs to all branches.
pull_request:
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
build_packages:
name: Build Packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
# Ensure node version is great enough
- name: Use Node.js v14.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm install
- run: npm run prettier:check
- run: npm run lint
- run: npm run build-tsc
# Tests
- name: Test Packages
if: ${{ success() }}
run: npm run test:coverage