Skip to content

Commit

Permalink
Add build and lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Fireboltofdeath committed Oct 31, 2024
1 parent 7a34bbd commit 29a32b6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: [push]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x

- name: Install dependencies
run: corepack yarn install

- name: Build packages
run: corepack yarn run build

- name: Run ESLint
run: corepack yarn run lint

0 comments on commit 29a32b6

Please sign in to comment.