Skip to content

Commit

Permalink
Update and rename build.yml to build_passportissuance.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aahna-ashina authored Mar 2, 2024
1 parent ca96809 commit d708192
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@ on:
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x, 20.x]
runs-on: ${{ matrix.os }}

defaults:
run:
working-directory: ./passportissuance

steps:
- uses: actions/checkout@v3

- name: Use Node.js
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '20.x'
node-version: ${{ matrix.node-version }}
- run: npm install

- run: npm run codegen
Expand Down

0 comments on commit d708192

Please sign in to comment.