Skip to content

Added support for Node version 23 (#1314) #1071

Added support for Node version 23 (#1314)

Added support for Node version 23 (#1314) #1071

Workflow file for this run

name: Release
env:
CI: "true"
on:
push:
branches:
- master
paths:
- .github/workflows/*.yml
- "cases/*.ts"
- "*.ts"
- package.json
- package-lock.json
- bun.lockb
jobs:
build:
name: "Node ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
# benchmarked node versions must be kept in sync with:
# - node-version matrix in pr.yml
# - NODE_VERSIONS in app.tsx
# - NODE_VERSION_FOR_PREVIEW in main.ts
node-version:
- 16.x
- 18.x
- 19.x
- 20.x
- 21.x
- 22.x
- 23.x
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm ci
- name: lint
run: npm run lint
- name: test build
run: npm run test:build
- name: npm test
run: npm t
- name: generate benchmarks with node
run: ./start.sh NODE
## FIX: https://github.com/github-actions-x/commit/issues/16
- name: Expose git commit data
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action
- name: push
uses: github-actions-x/[email protected]
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: master
commit-message: 'feat: ${{ matrix.node-version }} adds auto-generated benchmarks and bar graph'
rebase: 'true'
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16
build-bun:
name: "Bun ${{ matrix.bun-version }}"
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
bun-version:
- 1.1.27
steps:
- uses: actions/checkout@v4
- name: Use Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ matrix.bun-version }}
- name: Install
run: bun install
- name: Lint
run: bun run lint
- name: Test build
run: bun run test:build
- name: Test
run: bun run test
- name: generate benchmarks with bun
run: ./start.sh BUN
## FIX: https://github.com/github-actions-x/commit/issues/16
- name: Expose git commit data
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action
- name: push
uses: github-actions-x/[email protected]
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: master
commit-message: 'feat: ${{ matrix.bun-version }} adds auto-generated benchmarks and bar graph'
rebase: 'true'
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16