Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/check-badges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: Check badges in README.md

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Check badges in README.md
run: ./scripts/check-badges.bash "README.md"
- name: Check badges in README.md
run: ./scripts/check-badges.bash "README.md"
20 changes: 10 additions & 10 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
matrix:
# see https://nodejs.org/en/about/previous-releases for active releases
# https://github.com/nodejs/release#release-schedule
node-version: [ 18.x, 20.x, 22.x, lts/*, latest ]
node-version: [18.x, 20.x, 22.x, lts/*, latest]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: make github-ci
env:
TEST_CONFIGURATION_ACCESS_TOKEN: ${{ secrets.TEST_CONFIGURATION_ACCESS_TOKEN }}
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: make github-ci
env:
TEST_CONFIGURATION_ACCESS_TOKEN: ${{ secrets.TEST_CONFIGURATION_ACCESS_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Publish Package
on:
push:
tags:
- 'v*'
- "v*"

permissions:
id-token: write # Required for OIDC
id-token: write # Required for OIDC
contents: read

jobs:
Expand All @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
node-version: "lts/*"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm publish
- run: npm publish
28 changes: 14 additions & 14 deletions .github/workflows/try-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v4
- name: Use the latest versiob of Node.js
uses: actions/setup-node@v4
with:
# Switch node-version: latest (23) to 22 for a while
# https://github.com/nodejs/node/issues/55410
# npm pack crash in Node 23
# node-version: latest
node-version: 22.x
cache: 'npm'
- name: Init
run: make init
- name: Dry run
run: npm publish --dry-run
- uses: actions/checkout@v4
- name: Use the latest versiob of Node.js
uses: actions/setup-node@v4
with:
# Switch node-version: latest (23) to 22 for a while
# https://github.com/nodejs/node/issues/55410
# npm pack crash in Node 23
# node-version: latest
node-version: "lts/*"
cache: "npm"
- name: Init
run: make init
- name: Dry run
run: npm publish --dry-run
Loading