Skip to content

add user case create a project from current directory. #38

add user case create a project from current directory.

add user case create a project from current directory. #38

Workflow file for this run

name: End to end Tests
on:
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [24]
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test:e2e