Skip to content

Commit

Permalink
ci: publish
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDog896 committed Sep 7, 2023
1 parent a633519 commit f128eea
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 2 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: publish

on:
pull_request:
branches: [main]
push:
branches: [main]

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true

jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18.x'
- name: Install dependencies
run: yarn install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Test
run: yarn test
- name: Build page
run: yarn build
- name: Upload built project output
uses: actions/upload-artifact@v3
with:
name: build
path: build
pages:
needs: checks
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download Artifacts
uses: actions/download-artifact@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: 'build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
1 change: 1 addition & 0 deletions src/routes/+layout.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const prerender = true;
5 changes: 3 additions & 2 deletions tests/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { expect, test } from '@playwright/test';

test('index page has expected h1', async ({ page }) => {
test('index page has expected container headings', async ({ page }) => {
await page.goto('/');
await expect(page.getByRole('heading', { name: 'Welcome to SvelteKit' })).toBeVisible();
await expect(page.getByRole('heading', { name: 'Container A' })).toBeVisible();
await expect(page.getByRole('heading', { name: 'Container B' })).toBeVisible();
});

0 comments on commit f128eea

Please sign in to comment.