Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
898 B
YAML
36 lines
898 B
YAML
name: Test Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node: [
|
|
{"name": "LTS", "version": "lts/-2"},
|
|
{"name": "latest", "version": "latest"}
|
|
]
|
|
name: Node ${{ matrix.node.name }}
|
|
env:
|
|
CI: true
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Setup node ${{ matrix.node.name }}
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: ${{ matrix.node.version }}
|
|
- run: npm install
|
|
- run: npm run build:all
|
|
- name: Archive production artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: dist-node-${{ matrix.node.name }}
|
|
path: dist
|
|
retention-days: 30
|
|
- run: NODE_ENV=development npm run test:e2e
|
|
- run: NODE_ENV=production npm run test:e2e
|