Skip to content

feat: Update

feat: Update #102

Workflow file for this run

name: vue-test
on:
push:
branches: ['main', '*']
paths:
- '**/front/**/*'
#- 'libs/front/**/*'
- 'folio_content/**/*'
pull_request:
# The branches below must be a subset of the branches above
branches: ['main']
jobs:
vue-test:
name: Vue test
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn
- run: npx nx run front:test