Skip to content

Commit

Permalink
Merge pull request #270 from sasjs/fix-deps
Browse files Browse the repository at this point in the history
fix(ci/cd): fixed npmpublish workflow
  • Loading branch information
YuryShkoda authored Jun 17, 2022
2 parents 9286b68 + 27cdcf5 commit 29f4c76
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,29 @@ on:
- main

jobs:
build:
release:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [lts/fermium]

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm

- name: Install Dependencies
run: npm ci

- name: Build Project
run: npm run build

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
env:
Expand Down

0 comments on commit 29f4c76

Please sign in to comment.