Skip to content

Commit

Permalink
fix: ci and playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
0gust1 committed Sep 11, 2023
1 parent 3598662 commit 1e772c3
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ name: Build and test
on:
workflow_dispatch:
push:
branches: [main, master, dev]
pull_request:
branches: [main, master, dev]

jobs:
build-base-image:
test:
timeout-minutes: 60
runs-on: ubuntu-latest

steps:
- run: |
echo "TAG=test" >> $GITHUB_ENV
Expand All @@ -19,11 +22,19 @@ jobs:
if: ${{ github.ref == 'refs/heads/dev' }}
run: |
echo "TAG=latest" >> $GITHUB_ENV
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm ci
- run: npm run test
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run tests
run: npm run test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30

0 comments on commit 1e772c3

Please sign in to comment.