Bump Node to Version 23.5.0 #994
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
package-package: | |
name: Build Package | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4.2.2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.1.0 | |
with: | |
node-version-file: .nvmrc | |
- name: Setup Yarn | |
uses: threeal/setup-yarn-action@v2.0.0 | |
- name: Build Package | |
run: yarn build | |
- name: Upload Package | |
uses: actions/upload-artifact@v4.5.0 | |
with: | |
name: package | |
path: package.tgz | |
build-docs: | |
name: Build Documentation | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4.2.2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.1.0 | |
with: | |
node-version-file: .nvmrc | |
- name: Setup Yarn | |
uses: threeal/setup-yarn-action@v2.0.0 | |
- name: Build Documentation | |
run: yarn docs | |
- name: Upload Documentation | |
uses: actions/upload-artifact@v4.5.0 | |
with: | |
name: docs | |
path: docs |