fix: always set xmlns on math elements #13455
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: CI | |
on: [push, pull_request] | |
env: | |
CI_RELEASE_ROLE: ${{ secrets.CI_RELEASE_ROLE }} | |
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} | |
NDLA_RELEASES: ${{ secrets.NDLA_RELEASES }} | |
GH_TOKEN: ${{ secrets.CI_NOW_GH_TOKEN }} | |
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
GH_PR_NUMBER: ${{ github.event.number }} | |
GH_PR_REPO: ${{ github.event.pull_request.head.repo.full_name }} | |
GH_PR_SHA: ${{ github.event.pull_request.head.sha }} | |
jobs: | |
unit_tests: | |
name: "Unit tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20.9.0" | |
- name: "Enable yarn v4" | |
run: | | |
corepack enable | |
yarn set version 4.1.0 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
**/node_modules | |
.eslintcache | |
.yarn/cache | |
~/.npm | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: "Install" | |
run: yarn install --immutable | |
- name: "Bootstrap" | |
run: yarn bootstrap:ci | |
- name: "Check-all" | |
run: yarn check-all | |
- name: "Build storybook" | |
run: yarn build-storybook | |
- name: "Deploy vercel build" | |
run: yarn deploy-pr | |
continue-on-error: true | |
- name: "Deploy designmanual" | |
if: github.ref == 'refs/heads/master' | |
run: yarn deploy | |
continue-on-error: true |