From 73a71f5b052ba6c1e1e531c9730f79a655219109 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Tue, 26 Mar 2024 13:07:22 +0100 Subject: [PATCH] ci(shared): enable github actions --- .github/workflows/ci.yml | 47 ++++++++++++++++++++++++++++++++++++++++ package.json | 4 +++- 2 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..20859f53 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,47 @@ +name: CI + +on: + push: + branches: ["main"] + pull_request: + types: [opened, synchronize] + +jobs: + build: + name: Build and Test + timeout-minutes: 15 + runs-on: ubuntu-latest + env: + TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} + + steps: + - name: Check out code + uses: actions/checkout@v4 + with: + fetch-depth: 2 + + - uses: pnpm/action-setup@v3 + with: + version: 8 + + - name: Setup Node.js environment + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install + + - name: Build cli + run: pnpm build --filter=cli + + - name: Install cli binary + run: pnpm install + + - name: Build + run: pnpm build + + - name: Test + run: pnpm test diff --git a/package.json b/package.json index ee11d527..b80177e7 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,9 @@ "author": "Sebastian Sdorra ", "license": "MIT", "scripts": { - "commitlint": "commitlint --edit" + "commitlint": "commitlint --edit", + "build": "turbo build", + "test": "turbo test" }, "devDependencies": { "@changesets/changelog-github": "^0.5.0",