瀏覽代碼

chore: workflows for npm

Ryan Chandler 4 年之前
父節點
當前提交
9dadd11a40
共有 1 個文件被更改,包括 3 次插入3 次删除
  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