Skip to content

build(deps): bump react-i18next from 15.0.1 to 15.1.2 in /src/web #783

build(deps): bump react-i18next from 15.0.1 to 15.1.2 in /src/web

build(deps): bump react-i18next from 15.0.1 to 15.1.2 in /src/web #783

Workflow file for this run

name: web
on:
workflow_dispatch:
push:
branches:
- main
paths:
- src/web/**
- .github/workflows/web.yml
pull_request:
branches:
- main
paths:
- src/web/**
- .github/workflows/web.yml
env:
SERVICE: web
IMAGE: web
jobs:
CI:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src/web
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: src/web/pnpm-lock.yaml
- name: Install pnpm dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm eslint
- name: Run typecheck
run: pnpm tsc
BuildContainersForPR_Linux:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: ./.github/workflows/composite/build
with:
service: ${{ env.SERVICE }}
registry_endpoint: ${{ secrets.REGISTRY_ENDPOINT }}
BuildLinux:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: ./.github/workflows/composite/build-push
with:
service: ${{ env.SERVICE }}
registry_host: ${{ secrets.REGISTRY_HOST }}
registry_endpoint: ${{ secrets.REGISTRY_ENDPOINT }}
image_name: ${{ env.IMAGE }}
registry_username: ${{ secrets.REGISTRY_USERNAME }}
registry_password: ${{ secrets.REGISTRY_PASSWORD }}