Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Update npm
if: matrix.node-version == '6.x'
run: npm install -g npm@^5
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should have been removed in #165, but missed it, whoops!


- name: Install dependencies
run: npm install

- name: Install jest for node < 14
if: matrix.node-version == '10.x' || matrix.node-version == '12.x'
run: npm install jest@^27.5.1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfecto

Glad to have you around, I went through this all manually on my machine(s) as well but you're on top of it! very nice


- name: Set debug on windows
if: matrix.os == 'windows-latest'
run: set DEBUG=*
Expand Down
Loading