Skip to content

Commit

Permalink
test tagging action
Browse files Browse the repository at this point in the history
  • Loading branch information
vincanger committed Mar 4, 2024
1 parent 7f29638 commit 332a03d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 18 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/retag-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Retag Commit

on:
push:
branches:
# - main
- playwright-tests


jobs:
retag:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Configure Git
run: |
git config user.email "github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
- name: Delete Old Tag
run: |
git tag -d wasp-v0.12-test || true
git push origin :refs/tags/wasp-v0.12-test || true
- name: Add New Tag
run: |
git tag wasp-v0.12-test
git push origin wasp-v0.12-test
19 changes: 1 addition & 18 deletions app/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,37 +40,20 @@ export default defineConfig({
use: { ...devices['Desktop Chrome'] },
},

// {
// name: 'firefox',
// use: { ...devices['Desktop Firefox'] },
// },

// {
// name: 'webkit',
// use: { ...devices['Desktop Safari'] },
// },

/* Test against mobile viewports. */
// {
// name: 'Mobile Chrome',
// use: { ...devices['Pixel 5'] },
// },
// {
// name: 'Mobile Safari',
// use: { ...devices['iPhone 12'] },
// },

/* Test against branded browsers. */
// {
// name: 'Microsoft Edge',
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
// },
// {
// name: 'Google Chrome',
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
// },
],

// only run the web server on CI
webServer: process.env.CI
? {
command: 'npm run example-app:start',
Expand Down

0 comments on commit 332a03d

Please sign in to comment.