forked from github/cinny
126e3860c2
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 7.0.0. - [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/de0fac2e4500dabe0009e67214ff5f5447ce83dd...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: Build pull request
|
|
|
|
on:
|
|
pull_request:
|
|
types: ['opened', 'synchronize']
|
|
|
|
jobs:
|
|
build-pull-request:
|
|
name: Build pull request
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
PR_NUMBER: ${{github.event.number}}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
- name: Setup node
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
node-version-file: ".node-version"
|
|
package-manager-cache: false
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Build app
|
|
env:
|
|
NODE_OPTIONS: '--max_old_space_size=4096'
|
|
run: npm run build
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: preview
|
|
path: dist
|
|
retention-days: 1
|
|
- name: Save pr number
|
|
run: echo ${PR_NUMBER} > ./pr.txt
|
|
- name: Upload pr number
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: pr
|
|
path: ./pr.txt
|
|
retention-days: 1
|