Build ios app on m1 devices version 2 #509
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: Simple CI | |
on: [pull_request] | |
jobs: | |
run-ci: | |
name: Build Frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- run: npm install | |
- name: Check if the git repository is clean | |
run: exit $( git status --porcelain --untracked-files=no | head -255 | wc -l ) | |
- run: npm run lint | |
- run: make |