Skip to content

Commit

Permalink
Added Github CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ex-iT committed Jan 10, 2025
1 parent 6e1a4af commit 726b9a5
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ci:
runs-on: ubuntu-latest

steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4

- name: Install pnpm env πŸ—
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false

- name: Install Node.js πŸ—
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm

- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: pnpm install

- name: Run linter πŸ‘€
run: pnpm run lint

0 comments on commit 726b9a5

Please sign in to comment.