Skip to content

Commit

Permalink
Merge branch 'main' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
andershagbard committed Oct 7, 2024
2 parents 748892d + e72c2c8 commit 28c678d
Show file tree
Hide file tree
Showing 8 changed files with 97,471 additions and 77,785 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install dependencies
run: yarn
run: pnpm i

- name: Compile assets
run: yarn build
run: pnpm build

- name: Commit changes
uses: EndBug/add-and-commit@v7
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
13 changes: 9 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install modules
run: yarn
run: pnpm i

- name: Run JavaScript
if: always()
run: yarn lint-js
run: pnpm lint-js

- name: Run TypeScript
if: always()
run: yarn lint-tsc
run: pnpm lint-tsc
Binary file modified dist/bin/theme
Binary file not shown.
Loading

0 comments on commit 28c678d

Please sign in to comment.