Skip to content

Commit

Permalink
ci: added build check
Browse files Browse the repository at this point in the history
  • Loading branch information
mxgic1337 committed Jan 8, 2025
1 parent e30747a commit 0b10d4b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build check
on:
push:
branches:
- '*'
- '*/*'
- '**'
- '!main'
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build extension
run: pnpm run build

0 comments on commit 0b10d4b

Please sign in to comment.