From c6cd73faacf909e03ddeeeb7060224a7b2a6a8ba Mon Sep 17 00:00:00 2001 From: Marcus Davies <55892693+marcus-j-davies@users.noreply.github.com> Date: Sun, 28 Apr 2024 13:02:07 +0100 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9c84f5f..9c5322a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,14 +7,15 @@ on: jobs: test: - name: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 18 - - run: | - npm install - npm run build - npm run test \ No newline at end of file + - name: Install + run: npm install + - name: Build + run: npm run build + - name: Test + run: npm run test