Skip to content

Always use LTS Node.js version in CI #1412

Always use LTS Node.js version in CI

Always use LTS Node.js version in CI #1412

name: Package Libraries
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js LTS
uses: actions/setup-node@v6
with:
node-version: "lts/*"
cache: yarn
- name: Install
shell: pwsh
run: yarn install
- name: Package
shell: pwsh
run: yarn run package
- name: Upload Artifacts
uses: actions/upload-artifact@v7.0.0
with:
path: '_InstallPackages/**/*.zip'
if-no-files-found: error
retention-days: 90