diff --git a/.github/workflows/E2E.yml b/.github/workflows/E2E.yml index 0f2bd31..193d377 100644 --- a/.github/workflows/E2E.yml +++ b/.github/workflows/E2E.yml @@ -16,6 +16,7 @@ on: jobs: test: + name: Playwright E2E tests runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -43,8 +44,5 @@ jobs: - name: Install Playwright browsers run: cd frontend && npx playwright install - # - name: Wait for database to start and migrate - # run: sleep 120 - - name: Run Playwright E2E tests run: cd frontend && npm run test:playwright diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 5bbe7ae..b4c4c34 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -16,30 +16,16 @@ on: jobs: lint: + name: Lint runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "22" - name: Install dependencies for backend run: cd backend && npm install - name: Run backend lint run: cd backend && npm run lint - - # to do - # test: - # runs-on: ubuntu-22.04 - # steps: - # - uses: actions/checkout@v3 - # - uses: actions/setup-node@v3 - # with: - # node-version: "20" - - # - name: Install dependencies for backend - # run: cd backend && npm install - - # - name: Run backend tests - # run: cd backend && npm run test diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index aa60d1b..89c3c1e 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "22" - name: Install dependencies for frontend run: cd frontend && npm install @@ -37,7 +37,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "22" - name: Install dependencies for frontend run: cd frontend && npm install