45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
name: Pre-release
|
|
|
|
permissions: read-all
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- release-please-*
|
|
|
|
jobs:
|
|
pre-release:
|
|
name: 'Verify artifacts before release'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
cache: npm
|
|
node-version-file: '.nvmrc'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
# Ensure npm 11.5.1 or later is installed
|
|
- name: Update npm
|
|
run: npm install -g npm@latest
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build and bundle
|
|
run: npm run bundle
|
|
env:
|
|
NODE_ENV: 'production'
|
|
|
|
- name: Verify server.json
|
|
run: npm run verify-server-json-version
|
|
|
|
- name: Verify npm package
|
|
run: npm run verify-npm-package
|