Update dependency swr to v2.3.0 #670
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 frontend application | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
push: | |
paths: | |
- 'frontend/**' | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
jobs: | |
build-frontend: | |
name: Build frontend application for amd64 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: build frontend | |
working-directory: ./frontend | |
run: | | |
npm --version | |
yarn --version | |
node ./scripts/updatePackageJsonVersion.js ${{github.ref_name}} | |
yarn workspaces focus | |
yarn run lint | |
yarn run build |