Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions .github/workflows/standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,25 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
- name: Set up pnpm
uses: pnpm/action-setup@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version-file: package.json
registry-url: 'https://registry.npmjs.org'
cache: pnpm
- name: Install dependencies
run: npm ci
run: pnpm install --frozen-lockfile
- name: Check lint and formatting
run: pnpm check-ci
- name: Check types
run: npm run type:check
- name: Check format, lint and import sorting
run: npm run check-ci
run: pnpm type:check
- name: Test
run: npm run test:coverage
run: pnpm test:coverage
- name: Build
run: npm run build
run: pnpm build
- name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: npx semantic-release
run: pnpm dlx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading