Update dependency vite to v6 #496
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/cache-action@v6 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: temurin:11 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Setup yarn | |
run: corepack prepare [email protected] --activate | |
- name: Setup pnpm | |
run: corepack prepare [email protected] --activate | |
- name: Run tests | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: sbt scalafmtSbtCheck scalafmtCheckAll test scriptedSequentialPerModule |