From fe9ec5062bc481e38cf3878cfa1279d5021232de Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Wed, 28 Oct 2020 10:04:33 -0400 Subject: [PATCH] Use volta to pin node/yarn. --- .github/workflows/ci.yml | 4 ---- package.json | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49ac32dd..c4bf1efb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,6 @@ jobs: steps: - uses: actions/checkout@v2 - uses: volta-cli/action@v1 - with: - node-version: 10.x - run: yarn install --frozen-lockfile - run: yarn lint - run: yarn test:ember @@ -28,8 +26,6 @@ jobs: steps: - uses: actions/checkout@v2 - uses: volta-cli/action@v1 - with: - node-version: 10.x - run: yarn install --no-lockfile - run: yarn test:ember diff --git a/package.json b/package.json index 451cd2a6..9c3a184a 100644 --- a/package.json +++ b/package.json @@ -127,5 +127,9 @@ "release": true, "tokenRef": "GITHUB_AUTH" } + }, + "volta": { + "node": "10.23.0", + "yarn": "1.22.10" } }