chore(deps): update nuxt framework to ^3.17.7 #661
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: Run Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'playground/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'playground/**' | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| registry-url: https://registry.npmjs.org/ | |
| # Remove package-lock.json because native bindings does not work correctly for some reason | |
| - run: rm package-lock.json | |
| - run: npm i | |
| - name: Lint with ESLint | |
| run: npm run lint | |
| - name: Prepare testing with the playground | |
| run: npm run dev:prepare | |
| - name: Test package | |
| run: npm run test |