Fix swipe action (#1516) #6691
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: pull_request ci | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js 18.x | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18.x | |
| - name: build | |
| run: | | |
| npm i | |
| npm run build | |
| npm run check-compiled | |
| - name: test | |
| run: npm run cov | |
| - name: Codecov | |
| uses: codecov/[email protected] | |
| with: | |
| directory: ./coverage/ |