Skip to content

Commit

Permalink
chore: update tests, move files around
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Nov 29, 2024
1 parent 6070900 commit 74b1e26
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 30 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/node.js.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/run-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Run Checks

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
run-checks:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build React project
run: pnpm run build

- name: Run linter
run: pnpm run lint
File renamed without changes.

0 comments on commit 74b1e26

Please sign in to comment.