Skip to content

Removing DriveID from github secrets and .env, so it gets passed as input from API Payload from UI #68

Removing DriveID from github secrets and .env, so it gets passed as input from API Payload from UI

Removing DriveID from github secrets and .env, so it gets passed as input from API Payload from UI #68

Workflow file for this run

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/aio-cli-setup-action@1.3.0
with:
os: ${{ matrix.os }}
version: 10.x.x
- name: Build
env:
AIO_RUNTIME_NAMESPACE: ${{ secrets.AIO_RUNTIME_NAMESPACE_STAGE }}
uses: adobe/aio-apps-action@3.3.0
with:
os: ${{ matrix.os }}
command: build
- name: Test
uses: adobe/aio-apps-action@3.3.0
with:
os: ${{ matrix.os }}
command: test