Skip to content

Commit 7b1ff9e

Browse files
authored
Merge pull request #14 from rpearce/deps
Bump deps, fix legacy peer dep issue, clean up CI workflow
2 parents 55f2a89 + 8643c3f commit 7b1ff9e

File tree

5 files changed

+3222
-15456
lines changed

5 files changed

+3222
-15456
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,20 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98

109
steps:
11-
- uses: actions/checkout@v2
12-
- name: Use Node.js
13-
uses: actions/setup-node@v1
10+
- name: Checkout repo under GH workspace
11+
uses: actions/checkout@v2
12+
13+
- name: Use nodejs
14+
uses: actions/setup-node@v2
1415
with:
15-
node-version: '14.x'
16-
- run: npm install
17-
- run: npm run ci
18-
env:
19-
CI: true
16+
node-version: '16'
17+
cache: 'npm'
18+
19+
- name: Install deps without updating package-lock.json
20+
run: npm i --no-save
21+
22+
- name: Run the CI build
23+
run: npm run ci

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.3.4] - 2021-10-28
8+
9+
### Fixed
10+
11+
* Fix legacy peer deps issue
12+
713
## [0.3.3] - 2020-12-07
814

915
### Changed

jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ module.exports = {
66
moduleNameMapper: {},
77
preset: 'ts-jest',
88
setupFilesAfterEnv: [],
9+
testEnvironment: 'jsdom',
910
verbose: true
1011
}

0 commit comments

Comments
 (0)