Skip to content

Added repository.url in package.json #29

Added repository.url in package.json

Added repository.url in package.json #29

Workflow file for this run

name: CI
on:
pull_request:
jobs:
formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: ./package.json
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpm generate-protobuf
- run: pnpm format:check
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: ./package.json
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpm generate-protobuf
- run: pnpm lint
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: ./package.json
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpm generate-protobuf
- run: pnpm check
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: ./package.json
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpm generate-protobuf
- run: pnpm test
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: ./package.json
- uses: pnpm/action-setup@v4
with:
run_install: true
- run: pnpm generate-protobuf
- run: pnpm build