fix: use summary_large_image
for twitter seo meta
#941
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# permissions: | |
# id-token: write | |
jobs: | |
ci: | |
runs-on: upnpmtu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- run: npm i -fg corepack && corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm run lint | |
- run: pnpm run build | |
- name: nightly release | |
if: | | |
github.ref_name == 'main' && | |
!contains(github.event.head_commit.message, '[skip-release]') && | |
!startsWith(github.event.head_commit.message, 'docs') | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc && | |
pnpm run changelogen --canary nightly --publish | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: false |