feat: copy entire line when cursor is inside #312
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: cypress | |
on: | |
push: | |
branches: [main] | |
paths: | |
- '.github/workflows/*' | |
- 'cypress/**' | |
- 'src/**' | |
- 'index.html' | |
- 'package.json' | |
- 'vite.config.ts' | |
jobs: | |
cypress: | |
runs-on: ubuntu-latest | |
container: cypress/browsers:node16.17.0-chrome106 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm i yarn [email protected] -g | |
- run: yarn | |
- run: yarn run build | |
- run: mv dist canvas-editor | |
- run: serve . -l 3000 & | |
- run: yarn run cypress:run |