Skip to content

Commit

Permalink
revert: "chore(test): setup tests to run on both node 10 and 12"
Browse files Browse the repository at this point in the history
This reverts commit 99b6cd6
  • Loading branch information
mohatt committed Feb 16, 2021
1 parent 828a964 commit e1faad9
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,17 @@ jobs:
test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-20.04
strategy:
matrix:
node: [ '10', '12' ]
name: Node ${{ matrix.node }} test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
node-version: 12
- uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ matrix.node }}-build-${{ hashFiles('**/pnpm-lock.yaml') }}
key: ${{ runner.os }}-build-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ matrix.node }}-build-
${{ runner.os }}-build-
- run: |
npm -g install [email protected]
pnpm set verify-store-integrity false
Expand Down

0 comments on commit e1faad9

Please sign in to comment.