chore(deps-dev): bump vite from 5.0.4 to 5.0.5 #188
Workflow file for this run
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: VK-IO CI | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
# Segmentation fault (core dumped) https://github.com/nodejs/node/issues/35889 | |
# - 12.x | |
# Segmentation fault (core dumped) https://github.com/nodejs/node/issues/35889 | |
# - 14.x | |
- 16.x | |
- 18.x | |
- 20.x | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci --ignore-scripts | |
- run: npm run build | |
- env: | |
TOKEN: ${{ secrets.VK_TEST_TOKEN }} | |
run: npm run test |