Skip to content

👷 Add github packages possibility #15

👷 Add github packages possibility

👷 Add github packages possibility #15

Workflow file for this run

name: CI
on:
push:
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Project
run: pnpm build
- name: Lint & Check
run: pnpm lint && pnpm check