Skip to content

Commit

Permalink
feat(build): add develop build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeam committed Dec 29, 2023
1 parent 45674b8 commit f989f9e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Develop Build"
run-name: develop-build-${{ github.run_number }}-${{ github.run_id }}
on:
push:
branches:
- develop
jobs:
production-deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.10.0'
- name: Install npm packages
run: npm ci
- name: Test
run: npm test
- name: Lint
run: npm run lint
- name: Build
run: npm run build

0 comments on commit f989f9e

Please sign in to comment.