Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
hoshiyari420 authored Aug 21, 2024
2 parents 4925f70 + 1ae6d4b commit 9a4abb1
Show file tree
Hide file tree
Showing 39 changed files with 1,477 additions and 231 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
strategy:
matrix:
tutorial:
- "tests/how-to-test-contracts.spec.ts"
- "tests/erc20-paymaster.spec.ts"
- "tests/how-to-test-contracts.spec.ts"

steps:
- uses: actions/checkout@v4
Expand All @@ -21,4 +22,9 @@ jobs:
- name: Install Playwright Browsers
run: bun playwright install chromium --with-deps
- name: Run test for ${{ matrix.tutorial }}
run: bun test:github ${{ matrix.tutorial }}
run: |
export TERM=xterm-256color
export COLUMNS=80
export LINES=24
script -q -c "bun test:github ${{ matrix.tutorial }}"
3 changes: 1 addition & 2 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

bunx --no-install commitlint --edit "$1"
3 changes: 1 addition & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

bun lint-staged
2 changes: 1 addition & 1 deletion .lintstagedrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- prettier --list-different
- eslint
'*.md':
- cspell lint --file
- markdownlint-cli2
- cspell lint --quiet --no-must-find-files --files
'*.{json,yml}':
- prettier --list-different
12 changes: 6 additions & 6 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ useHead({
},
});
const seoDescription =
'Build together with the ZKsync Community. Learn how to build amazing smart contracts and dApps on ZKsync Era.';
useSeoMeta({
titleTemplate: `%s - ${seo?.siteName}`,
ogSiteName: seo?.siteName,
ogUrl: 'https://code.zksync.io',
description:
'Build together with the ZKsync Community. Learn how to build amazing smart contracts and dApps on ZKsync Era.',
ogDescription:
'Build together with the ZKsync Community. Learn how to build amazing smart contracts and dApps on ZKsync Era.',
description: seoDescription,
ogDescription: seoDescription,
twitterTitle: `%s`,
twitterDescription:
'Build together with the ZKsync Community. Learn how to build amazing smart contracts and dApps on ZKsync Era.',
twitterDescription: seoDescription,
twitterCard: 'summary_large_image',
twitterSite: '@zksync',
twitterCreator: '@ZKsyncDevs',
Expand Down
Loading

0 comments on commit 9a4abb1

Please sign in to comment.