From 5c2b3d46a6df50a2f1c97ecefde75a396245bb51 Mon Sep 17 00:00:00 2001 From: Kelvin Kiptum Kiprop Date: Wed, 27 Sep 2023 02:14:18 +0300 Subject: [PATCH 1/2] fix: - updated test.yml to use minimum node v16 --- .github/workflows/test.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55a1a5a..3ae158a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,11 +21,18 @@ jobs: - '16.x' - '18.x' # whichever node versions you support steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - - run: npm ci - - run: npm run build --if-present - - run: npm test \ No newline at end of file + + - name: Clean install dependencies + run: npm ci + + - name: Build application + run: npm run build --if-present + + - name: Test + run: npm test \ No newline at end of file From be689500eb9c2ef43b9304107a187d33fe1278c4 Mon Sep 17 00:00:00 2001 From: Kelvin Kiptum Kiprop Date: Wed, 27 Sep 2023 02:15:23 +0300 Subject: [PATCH 2/2] Create olive-glasses-search.md --- .changeset/olive-glasses-search.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/olive-glasses-search.md diff --git a/.changeset/olive-glasses-search.md b/.changeset/olive-glasses-search.md new file mode 100644 index 0000000..20d24b4 --- /dev/null +++ b/.changeset/olive-glasses-search.md @@ -0,0 +1,6 @@ +--- +"antd-multi-dashboard": patch +--- + +## Updated +- updated test.yml to use minimum node v16