Skip to content

fix(ui): (keyboard)ignore uppercase #1168

fix(ui): (keyboard)ignore uppercase

fix(ui): (keyboard)ignore uppercase #1168

Workflow file for this run

name: ci
on:
push:
branches: main
# paths-ignore:
# - '**/*.md'
# - 'examples/**/*.html'
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: load cache
uses: actions/cache@v4
with:
path: |
~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}
- uses: pnpm/action-setup@v4
with:
version: latest
run_install: true
- name: build packs
run: |
pnpm build:cache
- name: run test
run: |
pnpm test
- name: create versions or publish to npm registry
uses: changesets/action@v1
id: changesets
with:
publish: pnpm release
commit: 'ci(changeset): release oplayer'
env:
GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
## @oplayer/full
- name: \@oplayer/full npm publish
if: steps.changesets.outputs.published == 'true'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
cd packages/full
pnpm version prerelease --no-commit-hooks --no-git-tag-version --allow-same-version
cd ../../
pnpm --filter=@oplayer/full run build
pnpm --filter=@oplayer/full publish --no-git-checks
# - uses: simenandre/publish-with-pnpm@v2
# with:
# npm-auth-token: ${{ secrets.NPM_TOKEN }}
- name: Push version changes to main branch
if: steps.changesets.outputs.published == 'true'
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[skip ci]chore: release ${{ github.event.release.tag_name }}'
branch: ${{ github.event.repository.default_branch }}
file_pattern: packages/full/package.json
# 已被墙
# - name: build websites
# run: |
# pnpm i yarn -g
# cd website
# yarn
# yarn build:ghp
# - name: deploy to github pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GIT_HUB_TOKEN }}
# publish_dir: ./website/build
# publish_branch: gh-pages