web: Bump webpack #323
Workflow file for this run
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: Run web CI | |
on: | |
pull_request: | |
paths: | |
- "web/**" | |
workflow_dispatch: | |
concurrency: | |
group: ci-web-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Enable Corepack | |
run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install and run web CI | |
working-directory: ./web | |
run: | | |
yarn | |
yarn run ci |