Skip to content

increment version (forget to build the published previous version) #7

increment version (forget to build the published previous version)

increment version (forget to build the published previous version) #7

Workflow file for this run

name: "Run vitest tests"
on:
pull_request:
branches: ['main']
push:
branches: ['main']
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Test (vitest)
run: npm run test