docs: update visual assets (#2087) #2607
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: main-suite | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- main | |
- next | |
jobs: | |
test: | |
timeout-minutes: 20 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ["20", "22"] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
always-auth: true | |
node-version: ${{ matrix.node }} | |
cache: 'yarn' | |
scope: '@lingui' | |
- name: Install dependencies if needed | |
run: yarn install --network-timeout 1000000 | |
- name: Build packages | |
run: yarn release:build | |
- name: Unit Testing | |
run: yarn test:ci | |
validate: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
needs: test | |
name: validate (node 20, ubuntu-latest) | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
always-auth: true | |
node-version: 20 | |
cache: 'yarn' | |
scope: '@lingui' | |
- name: Install dependencies if needed | |
run: yarn install | |
- name: Check Prettier Formatting | |
run: yarn prettier:check | |
- name: Linting & Types | |
run: yarn lint:all | |
- name: Build packages | |
run: yarn release:build | |
- name: Unit Testing | |
run: yarn test:ci:coverage | |
- name: Test Public Typings | |
run: yarn test:tsd | |
- name: Integration Testing | |
run: yarn test:integration | |
- name: E2E Testing | |
run: yarn test:e2e | |
- name: Check coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
verbose: true |