We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c4c0e commit 4e43ac2Copy full SHA for 4e43ac2
.github/workflows/pipeline.yml
@@ -27,6 +27,16 @@ jobs:
27
run: npm run build
28
- name: Test
29
run: npm run test
30
+ - name: Install Playwright Browsers
31
+ run: npx playwright install --with-deps
32
+ - name: Run Playwright tests
33
+ run: npx playwright test
34
+ - uses: actions/upload-artifact@v4
35
+ if: always()
36
+ with:
37
+ name: playwright-report
38
+ path: playwright-report/
39
+ retention-days: 30
40
- name: Deploy app
41
if: ${{ env.SHOULD_DEPLOY == 'true' }}
42
run: flyctl deploy --remote-only
.github/workflows/playwright.yml
app.js
@@ -5,7 +5,7 @@ const app = express()
5
const PORT = process.env.PORT || 5001
6
7
app.get('/version', (req, res) => {
8
- res.send('14')
+ res.send('21')
9
})
10
11
app.get('/health', (req, res) => {
0 commit comments