diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 18021f0..d29a4b2 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -13,7 +13,10 @@ jobs: uses: actions/setup-node@v1 with: version: 10.x - - name: npm install, build, and test + - name: Use Yarn 1.17.2 run: | - npm install - npm build + npm install -g yarn@1.17.2 + - name: yarn build + run: | + yarn install + yarn build