From 4cf5b6041d79b77e39a3f6986c73c66b1e5eed2e Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Mon, 30 Mar 2026 20:46:29 +0200 Subject: [PATCH] ci: add dev branch workflow --- .gitea/workflows/dev.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitea/workflows/dev.yml diff --git a/.gitea/workflows/dev.yml b/.gitea/workflows/dev.yml new file mode 100644 index 0000000..d8ea0c7 --- /dev/null +++ b/.gitea/workflows/dev.yml @@ -0,0 +1,28 @@ +name: Dev Branch Check +on: + push: + branches-ignore: + - main + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - name: ๐Ÿ— Setup repo + uses: actions/checkout@v2 + + - name: ๐Ÿ— Setup Node + uses: actions/setup-node@v2 + with: + node-version: 22 + + - name: ๐Ÿ— Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: latest + + - name: ๐Ÿ“ฆ Install dependencies + run: pnpm install + + - name: ๐Ÿงช Check for linting/type errors + run: npx expo export --platform web