From 4a013ff06eba81f9721f55006d81e60fabe9e188 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 | 6 +++--- .github/workflows/integration-test.yml | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 09e1d4c..8d729c2 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -12,13 +12,13 @@ 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 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: