Skip to content

Bump vite from 3.2.7 to 3.2.8 #7

Bump vite from 3.2.7 to 3.2.8

Bump vite from 3.2.7 to 3.2.8 #7

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Setup Node (${{ matrix.node-version }})
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build files
run: yarn build
- name: Run test suite
run: yarn test