Skip to content

build(deps-dev): bump @vitejs/plugin-react from 4.1.0 to 4.1.1 #316

build(deps-dev): bump @vitejs/plugin-react from 4.1.0 to 4.1.1

build(deps-dev): bump @vitejs/plugin-react from 4.1.0 to 4.1.1 #316

Workflow file for this run

name: build
on: [push]
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn lint
- uses: hadolint/[email protected]
with:
dockerfile: ./infra/Dockerfile-backend
- uses: hadolint/[email protected]
with:
dockerfile: ./infra/Dockerfile-frontend
test:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
# pull so that testcontainers doesn't have to, timing out tests.
- run: docker compose -f compose.dev.yaml pull postgres redis
- run: yarn install --frozen-lockfile
- run: yarn test