From 2f4d9034b08771210a2bc36dbc59477de3ab9358 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Fri, 28 Nov 2025 14:36:50 +0100 Subject: [PATCH] feat(ci): add github ci --- .github/workflows/ci.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d43b00b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,34 @@ +name: CI + +on: + push: + branches: [main, 3d-nds] + pull_request: + branches: [main, 3d-nds] + +jobs: + ci: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: pnpm setup + uses: pnpm/action-setup@v4 + with: + version: 10 + + - name: node setup + uses: actions/setup-node@v4 + with: + node-version: 25 + cache: "pnpm" + + - name: install + run: pnpm install --frozen-lockfile + + - name: lint + run: pnpm lint + + - name: build + run: pnpm build