소스 검색

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