diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..15f52d00 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,66 @@ +name: CI + +on: + push: + pull_request: + +jobs: + server: + name: Server + runs-on: ubuntu-latest + concurrency: ci-server-${{ github.ref }} + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + cache-dependency-path: '**/pnpm-lock.yaml' + + - name: Install Packages (Common) + working-directory: ./common + run: pnpm install --frozen-lockfile + + - name: Install Packages (Server) + working-directory: ./server + run: pnpm install --frozen-lockfile + + - name: Build + working-directory: ./server + run: pnpm build + lint: + name: Lint + runs-on: ubuntu-latest + concurrency: ci-lint-${{ github.ref }} + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + cache-dependency-path: '**/pnpm-lock.yaml' + + - name: Install Packages + working-directory: ./tests + run: pnpm install --frozen-lockfile + + - name: Lint + run: pnpm lint:ci