Skip to content

Commit

Permalink
chore: Add check workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nandenjin committed Mar 27, 2024
1 parent cf8e30c commit c021ad9
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: checks
on:
push:
branches:
- dev
pull_request:
branches:
- dev

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
3 changes: 1 addition & 2 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: release-please
on:
push:
branches:
Expand All @@ -7,8 +8,6 @@ permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-dist.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: update-dist
on:
push:
branches:
Expand Down

0 comments on commit c021ad9

Please sign in to comment.