feat: drop support for node 12 & 14 (#111)

This commit is contained in:
leangseu-edx
2023-02-14 14:01:32 -05:00
committed by GitHub
parent 55de93ef59
commit cba982a7a0
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
node: [12, 14, 16]
node: [16]
steps:
- name: Checkout
uses: actions/checkout@v2

View File

@@ -17,7 +17,7 @@ jest.mock('hooks', () => ({
},
}));
jest.mock('Components/Banner', () => 'Banner');
jest.mock('components/Banner', () => 'Banner');
describe('CertificateBanner', () => {
const props = { cardId: 'cardId' };