MWPW-144264 Unpublish content when delete action is run on the floodgate #206
Workflow file for this run
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: AIO App CI | |
on: [pull_request] | |
jobs: | |
test: | |
name: Test PR | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: ['20'] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install | |
run: npm i | |
- name: Setup CLI | |
uses: adobe/[email protected] | |
with: | |
os: ${{ matrix.os }} | |
version: 10.x.x | |
- name: Build | |
env: | |
AIO_RUNTIME_NAMESPACE: ${{ secrets.AIO_RUNTIME_NAMESPACE_PROD }} | |
uses: adobe/[email protected] | |
with: | |
os: ${{ matrix.os }} | |
command: build | |
- name: Test | |
uses: adobe/[email protected] | |
with: | |
os: ${{ matrix.os }} | |
command: test |