Skip to content

Commit

Permalink
Fixing tests (#141)
Browse files Browse the repository at this point in the history
* missing lib

* updating google to webflow sitemap

* NPM Install

* Updating versions

* Updating tests

---------

Co-authored-by: seantomburke <[email protected]>
  • Loading branch information
seantomburke and seantomburke authored Sep 23, 2024
1 parent 9bacd12 commit 0b88c34
Show file tree
Hide file tree
Showing 7 changed files with 2,418 additions and 2,551 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 12
node-version: 16
- run: npm ci
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 12
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
16 changes: 4 additions & 12 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,15 @@ on:

jobs:
build:

runs-on: ubuntu-latest

outputs:
nodeVersion: ${{ steps.bump_version.outputs.version }}
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: '20'
- name: bump version
id: bump_version
run: |
Expand All @@ -36,9 +31,6 @@ jobs:
release:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node-version: [10.x]
steps:
- name: draft release
id: draft_release
Expand Down
Loading

0 comments on commit 0b88c34

Please sign in to comment.