Bump webpack from 5.75.0 to 5.76.0 #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- uses: pnpm/action-setup@v2.0.1 | |
with: | |
version: 8.6.1 | |
- run: git checkout main && git checkout $GITHUB_SHA | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm changeset status | |
- run: pnpm test --recursive | |
- run: pnpm run --recursive lint |