Explorar el Código

chore: workflows for npm

Ryan Chandler hace 4 años
padre
commit
9dadd11a40
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      .github/workflows/tests.yml

+ 3 - 3
.github/workflows/tests.yml

@@ -22,10 +22,10 @@ jobs:
           node-version: ${{ matrix.node-version }}
 
       - name: Install dependencies
-        run: yarn install --frozen-lockfile
+        run: npm ci
 
       - name: Build files
-        run: yarn build
+        run: npm run build
 
       - name: Run test suite
-        run: yarn test
+        run: npm run test