Skip to content

feat(web): add initial configuration #101

feat(web): add initial configuration

feat(web): add initial configuration #101

Workflow file for this run

name: Check
on:
pull_request:
push:
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build and Lint files
run: pnpm run build lint