Skip to content

Merge pull request #108 from CodeCrowCorp/dependabot/github_actions/c… #110

Merge pull request #108 from CodeCrowCorp/dependabot/github_actions/c…

Merge pull request #108 from CodeCrowCorp/dependabot/github_actions/c… #110

Workflow file for this run

name: ci-prod.yml
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
deployments: write
jobs:
test:
if: ${{ github.actor != 'dependabot[bot]' }}
name: Test using Playwright
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: |
npm install
npx playwright install
- name: Install Playwright Browser
run: |
sudo apt-get update
npx playwright install-deps
- name: Run Playwright Tests
continue-on-error: true
run: |
npm run check
npm run test
env:
PUBLIC_API_URL: ${{ secrets.PUBLIC_API_URL }}
PUBLIC_WEBSOCKET_URL: ${{ secrets.PUBLIC_WEBSOCKET_URL }}
PUBLIC_X_API_KEY: ${{ secrets.PUBLIC_X_API_KEY }}
PUBLIC_CROSS_ORIGIN: ${{ secrets.PUBLIC_CROSS_ORIGIN }}
PUBLIC_ENV: ${{ secrets.PUBLIC_ENV }}
- name: Convert E2E Report to Coverage Report
run: |
npm install playwright-e2e-coverage-report
wget https://raw.githubusercontent.com/CodeCrowCorp/playwright-e2e-coverage-report/master/scripts/reportConverter.js
chmod u+x reportConverter.js
node ./reportConverter.js
- name: Upload Artifact
uses: actions/upload-artifact@v4.4.3
if: always()
with:
name: results.json
path: ./results.json
retention-days: 30
- name: Send to Codecov
uses: codecov/codecov-action@v4.6.0
with:
files: ./results.json
flags: "e2ecoverage"
deploy:
if: ${{ github.actor != 'dependabot[bot]' }}
name: Deploy to Cloudflare Pages (Production)
needs: [test]
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install NPM and build
run: npm install && npm run build
env:
PUBLIC_API_URL: ${{ secrets.PUBLIC_API_URL }}
PUBLIC_WEBSOCKET_URL: ${{ secrets.PUBLIC_WEBSOCKET_URL }}
PUBLIC_X_API_KEY: ${{ secrets.PUBLIC_X_API_KEY }}
PUBLIC_CROSS_ORIGIN: ${{ secrets.PUBLIC_CROSS_ORIGIN }}
PUBLIC_ENV: ${{ secrets.PUBLIC_ENV }}
- name: Publish
uses: cloudflare/wrangler-action@v3.12.1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages publish ".svelte-kit/cloudflare" --project-name=mage-website
create-tag:
if: ${{ github.actor != 'dependabot[bot]' }}
name: Create Tag and Release
runs-on: ubuntu-latest
needs: [deploy]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get NPM version
id: package-version
uses: martinbeentjes/npm-get-version-action@main
- name: Create a tag and release
uses: ncipollo/release-action@v1.14.0
with:
tag: ${{ steps.package-version.outputs.current-version }}
name: v${{ steps.package-version.outputs.current-version }}
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
continue-on-error: true