From 4bcf108462b2976354433d1659c6f7f56da44b72 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Tue, 27 Feb 2024 10:25:07 +0100 Subject: [PATCH 1/2] ci: build and test current commit --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fd1d45c..1399b5b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: juliangruber/merge-pull-request-action@master + - name: Checkout + uses: actions/checkout@v1 + - name: npm install and build + run: | + npm ci + npm run build + - uses: ./ with: github-token: ${{ secrets.GITHUB_TOKEN }} number: 1 From c1cde859c579fcb8206aa6baa38fb9ddcfd54b18 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Tue, 27 Feb 2024 10:56:22 +0100 Subject: [PATCH 2/2] no build step --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1399b5b9..2d259a28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 - - name: npm install and build - run: | - npm ci - npm run build + - run: npm ci - uses: ./ with: github-token: ${{ secrets.GITHUB_TOKEN }}