Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Bump vite from 4.5.0 to 4.5.1 #82

Bump vite from 4.5.0 to 4.5.1

Bump vite from 4.5.0 to 4.5.1 #82

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
- 'README.md'
- 'vite.docs.config.js'
push:
branches:
- main
paths-ignore:
- 'docs/**'
- 'README.md'
- 'vite.docs.config.js'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x, 18.x, 20.x, latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v2
with:
directory: ./coverage