Skip to content

Commit

Permalink
Merge pull request #253 from kheina-com/add-npm-release-workflow
Browse files Browse the repository at this point in the history
add steps for node setup and build dependencies
  • Loading branch information
kheina authored Apr 15, 2024
2 parents 8cf3e10 + c73fd16 commit b4c5117
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ jobs:
filename: ${{ steps.build.outputs.filename }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
run: npm install
- name: build firefox
run: npm run build
- name: zip firefox
Expand All @@ -36,6 +42,12 @@ jobs:
filename: ${{ steps.build.outputs.filename }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
run: npm install
- name: build chrome
run: npm run build
- name: zip chrome
Expand Down

0 comments on commit b4c5117

Please sign in to comment.