Skip to content

Bump @vitest/browser from 1.2.2 to 1.4.0 #77

Bump @vitest/browser from 1.2.2 to 1.4.0

Bump @vitest/browser from 1.2.2 to 1.4.0 #77

Workflow file for this run

name: Runs All tests
on:
push:
paths:
- 'src/**/*.js'
- 'src/**/*.mjs'
- 'dist/**/*.js'
- 'dist/**/*.mjs'
- 'dist/**/*.ts'
- 'dist/**/*.ts.map'
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Packages
run: npm ci
- name: Build dist files
run: npm run build --if-present
- name: Execute tests
run: npm run test:all