fix ios 15.0.0 xcode build (#816) #2590
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 Test | |
on: | |
push: | |
paths: | |
- 'examples/client/Locomotion/**' | |
- '.github/workflows/app_test.yml' | |
defaults: | |
run: | |
working-directory: examples/client/Locomotion | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
always-auth: true | |
registry-url: https://registry.npmjs.org | |
- name: Install NPM dependencies | |
run: npm install | |
- run: npm run linter | |
- run: npm run ts || echo "Warning! npm run ts failed." |