Skip to content

feat: update notification #1326

feat: update notification

feat: update notification #1326

Workflow file for this run

# TBA
name: Frontend
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Node
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
# Install dependencies
- name: Install dependencies
run: yarn install:frontend
# Lint and test
- name: Lint
run: yarn lint:frontend
# Test
# - name: Test
# run: yarn test:frontend