Skip to content

Commit

Permalink
cleaning up - no firebase, no auth
Browse files Browse the repository at this point in the history
  • Loading branch information
evandor committed Jun 6, 2024
1 parent 9844eda commit 3bc479b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/coverage.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,32 @@ jobs:
# Required to put a comment into the pull-request
pull-requests: write

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: ${{ matrix.node-version }}
- name: 'Install Deps'
run: yarn install
- name: 'Test'
run: npx vitest --coverage
- name: 'Report Coverage'
if: always() # Also generate the report if tests are failing
uses: davelosert/vitest-coverage-report-action@v2

- run: npm run "build bex (publish)"
- run: npx playwright install
- run: npm run test:e2e
- uses: actions/upload-artifact@v4
# if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml → .github/workflows/e2e.yml_
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Node.js CI
name: E2E
run-name: E2E Tests
on:
push:
Expand Down

0 comments on commit 3bc479b

Please sign in to comment.