Skip to content

Commit

Permalink
Merge pull request #10 from davidbenge/dbenge
Browse files Browse the repository at this point in the history
updated build scripts and node version
  • Loading branch information
davidbenge committed Aug 14, 2023
2 parents 81f2ccc + d2c897b commit 77e293a
Show file tree
Hide file tree
Showing 16 changed files with 13,060 additions and 7,185 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
strategy:
max-parallel: 1
matrix:
node-version: ['12']
node-version: ['16']
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install
Expand Down Expand Up @@ -54,6 +54,9 @@ jobs:
AIO_PROJECT_WORKSPACE_ID: ${{ secrets.AIO_PROJECT_WORKSPACE_ID_PROD }}
AIO_PROJECT_WORKSPACE_NAME: ${{ secrets.AIO_PROJECT_WORKSPACE_NAME_PROD }}
AIO_PROJECT_WORKSPACE_DETAILS_SERVICES: ${{ secrets.AIO_PROJECT_WORKSPACE_DETAILS_SERVICES_PROD }}
SOCKET_CLUSTER_ID: ${{secrets.SOCKET_CLUSTER_ID_PROD}}
SOCKET_API_KEY: ${{secrets.SOCKET_API_KEY_PROD}}
SOCKET_API_SECRET: ${{secrets.SOCKET_API_SECRET_PROD}}
uses: adobe/aio-apps-action@2.0.1
with:
os: ${{ matrix.os }}
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/deploy_stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
strategy:
max-parallel: 1
matrix:
node-version: ['12']
node-version: ['16']
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install
Expand Down Expand Up @@ -55,6 +55,9 @@ jobs:
AIO_PROJECT_WORKSPACE_ID: ${{ secrets.AIO_PROJECT_WORKSPACE_ID_STAGE }}
AIO_PROJECT_WORKSPACE_NAME: ${{ secrets.AIO_PROJECT_WORKSPACE_NAME_STAGE }}
AIO_PROJECT_WORKSPACE_DETAILS_SERVICES: ${{ secrets.AIO_PROJECT_WORKSPACE_DETAILS_SERVICES_STAGE }}
SOCKET_CLUSTER_ID: ${{secrets.SOCKET_CLUSTER_ID_STAGE}}
SOCKET_API_KEY: ${{secrets.SOCKET_API_KEY_STAGE}}
SOCKET_API_SECRET: ${{secrets.SOCKET_API_SECRET_STAGE}}
uses: adobe/aio-apps-action@2.0.1
with:
os: ${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: ['12']
node-version: ['16']
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install
Expand Down
Loading

0 comments on commit 77e293a

Please sign in to comment.