Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

fix(deps): update rust crate serde_json to v1.0.125 #840

fix(deps): update rust crate serde_json to v1.0.125

fix(deps): update rust crate serde_json to v1.0.125 #840

Workflow file for this run

name: frontend
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Use Node.js
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: latest
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npm run build --if-present
- run: npm run lint --if-present
- run: npm run test --if-present