refactor(webgl-video-editor): define arrays of node fields #157
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: Build | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['main'] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules/.remote-assets | |
| website/node_modules/.remote-assets | |
| key: ${{ runner.os }}-remote-assets | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - run: pnpm --prefix packages/nextgraph-video-editor run orm:build | |
| - run: pnpm vue-tsc -b config/tsconfig.check.json | |
| - run: pnpm lint | |
| - run: pnpm test | |
| - run: pnpm libs:build | |
| - run: pnpm website:build |