-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Ensure deploy is using correct Python
1 parent
e53753f
commit c8b3d93
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,16 +8,24 @@ on: | |
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: ['18'] | ||
python-version: ['3.11'] | ||
env: | ||
TM_NTT_CERT_ARN: ${{ secrets.TM_NTT_CERT_ARN }} | ||
TM_LABS_WILDCARD_CERT_ARN: ${{ secrets.TM_LABS_WILDCARD_CERT_ARN }} | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Set up Node 18.x | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Set up Node ${{ matrix.node-version }}.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
node-version: ${{ matrix.node-version }} | ||
- name: Check if package-lock.json is up to date | ||
run: | | ||
npx --yes [email protected] | ||
|