Skip to content

Fix a11y

Fix a11y #1229

Workflow file for this run

name: Update release branch and create package
on:
push:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "21.x"
cache: npm
- run: npm ci
- run: npm run build
- run: echo node_modules > .gitignore
- uses: JS-DevTools/npm-publish@v3
if: github.ref == 'refs/heads/main'
with:
token: ${{ secrets.GITHUB_TOKEN }}
registry: "https://npm.pkg.github.com"
- uses: stefanzweifel/git-auto-commit-action@v5
if: github.ref == 'refs/heads/main'
with:
commit_message: Commit Build
branch: release
create_branch: true
push_options: "--force"