From 9a2b7629711d6fa3adee4fe253841e2e111dff9f Mon Sep 17 00:00:00 2001 From: Ondra Chaloupka Date: Fri, 29 Nov 2024 10:25:55 +0100 Subject: [PATCH] testing --- .github/workflows/build-test.yml | 23 +++++++++++++++++------ .github/workflows/integration-test.yml | 4 +++- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 09e1d4c..179fbb2 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -12,19 +12,30 @@ jobs: node-version: [16] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 7 - - name: Install, build and test + version: 9 + + - name: 🤗 Install dependencies + run: pnpm install + + - name: 🥸 Show me yourself + run: | + set -x + pnpm --version + node --version + pnpm tsc --version + npx tsc --version + + - name: Build and test timeout-minutes: 5 run: | - pnpm install pnpm build pnpm test env: diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index c62deed..58990c8 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -1,6 +1,8 @@ name: Integration tests -on: [push] +on: + push: + branches: [ main ] jobs: build: