Firefox Mobile needs min 120 due to API support #311
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: RES Pipeline | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v*.*.* | |
pull_request: | |
jobs: | |
lint_flow: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
- run: yarn install --frozen-lockfile | |
- run: yarn flow check --show-all-errors | |
- run: yarn eslint | |
- run: yarn stylelint | |
- run: yarn i18n-lint | |
build_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
- run: yarn install --frozen-lockfile | |
- run: yarn build --browsers=all | |
- uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
dist/zip/chrome.zip | |
dist/zip/chromebeta.zip | |
dist/zip/edge.zip | |
dist/zip/firefox.zip | |
dist/zip/opera.zip | |
prerelease: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
- run: yarn install --frozen-lockfile | |
- run: yarn test | |
- run: yarn build --browsers=all |