Skip to content

Commit

Permalink
Merge branch 'update-deps' into fix-input
Browse files Browse the repository at this point in the history
  • Loading branch information
andershagbard committed Oct 7, 2024
2 parents 1df6454 + 5d9d45c commit 8130962
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 4,524 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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"@actions/github": "^5.1.1",
"@aws-sdk/client-s3": "^3.665.0",
"@aws-sdk/s3-request-presigner": "^3.665.0",
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
"@shopify/themekit": "^1.1.10",
"@types/archiver": "^5.3.4",
"@types/fs-extra": "^11.0.4",
Expand Down
26 changes: 26 additions & 0 deletions pnpm-lock.yaml

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

Loading

0 comments on commit 8130962

Please sign in to comment.