소스 검색

Last bit of yarn bye

Paulus Schoutsen 4 년 전
부모
커밋
ae45ddc30e
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      .github/workflows/ci.yml
  2. 1 1
      .github/workflows/npmpublish.yml

+ 2 - 2
.github/workflows/ci.yml

@@ -19,6 +19,6 @@ jobs:
         uses: actions/setup-node@v1
         uses: actions/setup-node@v1
         with:
         with:
           node-version: 16
           node-version: 16
-      - run: yarn install --frozen-lockfile
+      - run: npm ci
       - run: script/build
       - run: script/build
-      - run: yarn prettier --check src
+      - run: npm exec prettier --check src

+ 1 - 1
.github/workflows/npmpublish.yml

@@ -16,7 +16,7 @@ jobs:
         with:
         with:
           node-version: 14
           node-version: 14
           registry-url: https://registry.npmjs.org/
           registry-url: https://registry.npmjs.org/
-      - run: yarn install --frozen-lockfile
+      - run: npm ci
       - run: npm publish
       - run: npm publish
         env:
         env:
           NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
           NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}