Update deps. #334
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: test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| strategy: | |
| matrix: | |
| node-version: [24] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install native-keymap dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --yes libx11-dev libxkbfile-dev | |
| - uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: true | |
| run-install: true | |
| - run: | | |
| vpr build | |
| - run: | | |
| vp run test:all | |
| - run: | | |
| vp run --filter '@nkzw/codiff-integration-tests' test |