Skip to content

Commit

Permalink
merged 'ed/deps-upgrade-jan-2024'
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit 182046a
Author: Ed Ropple <[email protected]>
Date:   Sat Jan 13 10:32:58 2024 -0500

    prettier fix

commit ce34959
Author: Ed Ropple <[email protected]>
Date:   Sat Jan 13 10:30:19 2024 -0500

    fixed Github Actions workflows for npm

commit 1586def
Author: Ed Ropple <[email protected]>
Date:   Sat Jan 13 10:23:43 2024 -0500

    upgraded to @sinclair/typebox 0.32.x

commit 75d012d
Author: Ed Ropple <[email protected]>
Date:   Sat Jan 13 10:02:11 2024 -0500

    dev dependencies updated
  • Loading branch information
eropple committed Jan 13, 2024
1 parent 28dca2d commit c5b8281
Show file tree
Hide file tree
Showing 7 changed files with 10,258 additions and 3,844 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run lint
- run: npm ci
- run: npm run build
- run: npm run lint
if: matrix.os == 'ubuntu-latest'
- run: yarn run format:check
- run: npm run format:check
if: matrix.os == 'ubuntu-latest'
- run: yarn test
- run: npm test
15 changes: 7 additions & 8 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: npm ci
- run: npm run build
if: matrix.os == 'ubuntu-latest'
- run: yarn run lint
- run: npm run lint
if: matrix.os == 'ubuntu-latest'
- run: yarn run format:check
- run: npm run format:check
if: matrix.os == 'ubuntu-latest'
- run: yarn test

- run: npm test

publish-npm:
needs: build
Expand All @@ -51,8 +50,8 @@ jobs:
- name: Verify that the version exists in package.json
run: 'sudo apt-get install -y jq && [[ "$(jq -r ".version" package.json)" == "$VERSION" ]]'

- run: yarn install --frozen-lockfile
- run: yarn run build
- run: npm ci
- run: npm run build
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
Loading

0 comments on commit c5b8281

Please sign in to comment.