Fix indentation error in GitHub Actions workflow #11
Workflow file for this run
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: medical CI | |
on: | |
push: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run a one-line script | |
run: echo Hello from medical app | |
- name: setup Node js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '>=18' | |
- name: install dependencies | |
run: npm install | |
- name: Run test | |
run: npm run test -- --ci | |
- name: Start Expo in CI mode | |
run: npm run start | |