Add Spanish and French language support to Exercise Benefits page #242
Workflow file for this run
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: ci | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - dev | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run corepack enable | |
| run: corepack enable | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| # cache: yarn | |
| - name: Install project | |
| run: yarn install --frozen-lockfile | |
| - name: Test site | |
| env: | |
| ESLINT_NO_DEV_ERRORS: true | |
| DISABLE_ESLINT_PLUGIN: true | |
| VITE_AUTH0_CLIENT_ID: "${{secrets.VITE_AUTH0_CLIENT_ID}}" | |
| VITE_RECAPTCHA_SITE_KEY: "${{secrets.VITE_RECAPTCHA_SITE_KEY}}" | |
| run: yarn test | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run corepack enable | |
| run: corepack enable | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| # cache: yarn | |
| - name: Install project | |
| run: yarn install --frozen-lockfile | |
| - name: Test site | |
| env: | |
| ESLINT_NO_DEV_ERRORS: true | |
| DISABLE_ESLINT_PLUGIN: true | |
| run: yarn build |