From 47c80b2383c8f9ad8ccd3ee195930eb2af6bb2f3 Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Thu, 5 Jan 2023 20:28:36 +0000 Subject: [PATCH] Small tweaks to existing workflows --- .github/workflows/check-dist.yml | 2 +- .github/workflows/test.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index c3cf9ac..7db8c94 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set Node.js 16.x + - name: Setup Node 16 uses: actions/setup-node@v3 with: node-version: 16.x diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0a3601..cbbaa6c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Set Node.js 16.x + - name: Setup Node 16 uses: actions/setup-node@v3 with: node-version: 16.x @@ -37,15 +37,15 @@ jobs: - name: Compile run: npm run build - - name: Test - run: npm run test - - name: Lint run: npm run lint - name: Format run: npm run format-check + - name: Test + run: npm run test + # Test end-to-end by uploading two artifacts and then downloading them - name: Create artifact files run: |