chore: Release version 1.3.1 to Android/iOS
#56
This file contains hidden or 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: "Standard Checks" | |
| on: | |
| push: | |
| branches: ["master", "ci"] | |
| jobs: | |
| check: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: 'package.json' | |
| cache: 'npm' | |
| - name: Install Node dependencies | |
| run: npm install | |
| - name: Check lint rules | |
| run: npm run lint | |
| - name: Run JavaScript Tests | |
| run: npm run test | |