add passportMetadata in keychain and bump version #20
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: App CI | |
on: | |
push: | |
paths: | |
- "app/**" | |
- ".github/workflows/app.yml" | |
- ".github/actions/**" | |
jobs: | |
lint: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ./.github/actions/yarn-install | |
with: | |
working_directory: ./app | |
- name: Run linter | |
run: yarn lint | |
working-directory: ./app | |
- name: Run prettier | |
run: yarn fmt | |
working-directory: ./app | |
test: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ./.github/actions/yarn-install | |
with: | |
working_directory: ./app | |
- name: Install app dependencies | |
run: yarn install-app | |
working-directory: ./app | |
- name: Test | |
run: yarn test | |
working-directory: ./app |