fix: use typescript-native-bridge for vue-tsc (#246) #226
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: pages | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup Node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 20.20.2 | |
| cache: npm | |
| - name: Install system deps | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gettext | |
| - name: Install deps | |
| run: npm ci | |
| - name: Build docs | |
| run: npm run docs:build | |
| - name: Deploy to pages branch | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: pages | |
| folder: docs/.vitepress/dist | |
| clean: true |