From 8fcf957211b196c88dcca9069f3b44ee97672900 Mon Sep 17 00:00:00 2001 From: MomenNano Date: Mon, 1 Aug 2022 23:11:33 +0200 Subject: [PATCH] fix run command --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6621e63..49441b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,18 +11,18 @@ on: jobs: test: + runs-on: ubuntu-latest - steps: + + steps: - uses: actions/checkout@v3 - name: Use Node.js uses: actions/setup-node@v3 with: node-version: 16 - + - name: Install Dependencies - run: | - npm install --ignore-scripts + run: npm install --ignore-scripts - name: Run Tests - run: | - npm run test:unit + run: npm run test:unit