build(deps): bump react-syntax-highlighter from 15.6.3 to 15.6.6 in /web #1468
Workflow file for this run
This file contains hidden or 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: Chatbot Web CI | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/web-ci.yml' | |
- 'web/**' | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
paths: | |
- '.github/workflows/web-ci.yml' | |
- 'web/**' | |
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI | |
jobs: | |
lint: | |
defaults: | |
run: | |
working-directory: web | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Activate Corepack | |
run: corepack enable | |
- name: Install modules | |
run: yarn install --immutable | |
- name: lint | |
run: make lint | |
test: | |
defaults: | |
run: | |
working-directory: web | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Activate Corepack | |
run: corepack enable | |
- name: Install modules | |
run: yarn install --immutable | |
- name: test | |
run: make test | |
build: | |
defaults: | |
run: | |
working-directory: web | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Activate Corepack | |
run: corepack enable | |
- name: Install modules | |
run: yarn install --immutable | |
- name: Build project | |
run: yarn build |