build(deps-dev): bump @vitejs/plugin-react from 4.1.0 to 4.1.1 #316
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: 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 |