This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
build(deps): bump twig/twig from 3.11.0 to 3.11.1 in /backend in the composer group across 1 directory #688
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: Vitest Tests | |
on: | |
push: | |
branches: [ main, master, develop ] | |
pull_request: | |
branches: [ main, master, develop ] | |
jobs: | |
test: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install PNPM | |
run: npm install -g pnpm | |
- name: Install dependencies | |
run: cd frontend && pnpm install | |
- name: Run Vitest tests | |
run: cd frontend && pnpm run test | |