Skip to content

feat: first with boilerplate #1

feat: first with boilerplate

feat: first with boilerplate #1

Workflow file for this run

name: Frontend Workflow
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20.11"
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test