Enable eslint, remove node_modules #38
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: "Test" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test action | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout | |
- run: npm install | |
- name: Build | |
run: npm run build | |
- name: Ensure no pending Git changes | |
run: | | |
GIT_STATUS=$(git status --porcelain) | |
if [[ -n $GIT_STATUS ]]; then | |
echo "There are pending Git changes after running the build. Did you forget to commit the .js files?" | |
echo "$GIT_STATUS" | |
exit 1 | |
fi | |
- name: Run tests | |
run: npm run test | |
- name: Load test key | |
id: get_key | |
run: | | |
value=$(cat src/tests/test_key_b64.txt) | |
echo "text=$value" >> $GITHUB_OUTPUT | |
- uses: ./ | |
name: zipalign and Sign APK | |
with: | |
releaseDirectory: src/tests/apk-zip | |
signingKeyBase64: ${{ steps.get_key.outputs.text }} | |
alias: test_key | |
keyStorePassword: android | |
keyPassword: android | |
zipAlign: true | |
- uses: ./ | |
name: Sign APK | |
with: | |
releaseDirectory: src/tests/apk | |
signingKeyBase64: ${{ steps.get_key.outputs.text }} | |
alias: test_key | |
keyStorePassword: android | |
keyPassword: android | |
- uses: ./ | |
name: Sign AAB | |
with: | |
releaseDirectory: src/tests/aab | |
signingKeyBase64: ${{ steps.get_key.outputs.text }} | |
alias: test_key | |
keyStorePassword: android | |
keyPassword: android |