Skip to content

Commit

Permalink
Merge pull request #27 from jsonresume/feature/enable-mac-compatibility
Browse files Browse the repository at this point in the history
enable mac compatibility
  • Loading branch information
levino committed Nov 27, 2023
2 parents c8b0672 + 21e45c3 commit 5334e46
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 11 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Playwright Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
working-directory: apps/registry
- name: Run Playwright tests
run: pnpm turbo test:e2e
env:
GITHUB_TOKEN: ${{ secrets.LEVINS_TOKEN }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
1 change: 0 additions & 1 deletion apps/registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"json-to-pretty-yaml": "^1.2.2",
"jsonresume-theme-ace": "^1.1.0",
"jsonresume-theme-actual": "^0.2.1",
"jsonresume-theme-apage": "^1.0.2",
"jsonresume-theme-autumn": "^1.0.1",
"jsonresume-theme-caffeine": "^1.2.3",
"jsonresume-theme-class": "^0.1.2",
Expand Down
1 change: 0 additions & 1 deletion apps/registry/pages/api/formatters/template.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export const THEMES = {
ace: require('jsonresume-theme-ace'),
actual: require('jsonresume-theme-actual'),
apage: require('jsonresume-theme-apage'),
autumn: require('jsonresume-theme-autumn'),
caffeine: require('jsonresume-theme-caffeine'),
class: require('jsonresume-theme-class'),
Expand Down
9 changes: 0 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 comments on commit 5334e46

@vercel
Copy link

@vercel vercel bot commented on 5334e46 Nov 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 5334e46 Nov 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.