feat(Table): add custom @select:all
event (#2581)
#5956
This file contains 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: ci-dev | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
pull-requests: read | |
strategy: | |
matrix: | |
os: [ubuntu-latest] # macos-latest, windows-latest | |
node: [20] | |
env: | |
NUXT_GITHUB_TOKEN: ${{ secrets.NUXT_GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: Filter changes | |
uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
src: | |
- 'src/**' | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Prepare | |
run: pnpm run dev:prepare | |
- name: Lint | |
run: pnpm run lint | |
- name: Typecheck | |
run: pnpm run typecheck | |
- name: Build | |
run: pnpm run build | |
- name: Test | |
run: pnpm run test run | |
- name: Release Edge | |
if: github.event_name == 'push' && steps.changes.outputs.src == 'true' | |
run: ./scripts/release-edge.sh | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}} |