Skip to content

Commit

Permalink
adding vitest action
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHi committed Nov 26, 2023
1 parent c2b1353 commit 66e9d29
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/2023.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3

with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Execute Unit tests
working-directory: ./Typescript/2023
- run: pnpm ci
- run: pnpm run test

0 comments on commit 66e9d29

Please sign in to comment.