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