chore(deps): update dependency @appium/docutils to v1.0.3 #359
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
# Updates Crowdin with any changes in the English translation file (/assets/locales/en/translation.json) | |
name: Update Crowdin English Resources | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Crowdin Update | |
run: npm run crowdin-update | |
env: | |
# appium-desktop | |
CROWDIN_PROJECT_ID: 346705 | |
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }} |