Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Update dependency vite-plugin-rewrite-all to v1.0.2 #559

Update dependency vite-plugin-rewrite-all to v1.0.2

Update dependency vite-plugin-rewrite-all to v1.0.2 #559

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"
- uses: actions/[email protected]
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: install dependencies
working-directory: frontend
run: yarn
- name: lint
working-directory: frontend
run: yarn lint
- name: build
working-directory: frontend
run: yarn build