Skip to content

Commit

Permalink
- updated ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcwbr committed Aug 8, 2023
1 parent 9af979d commit ec878a1
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions .github/workflows/publish.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,42 @@
name: NPM Package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'

- name: install dependencies
run: npm ci

- name: test
run: npm run test

- name: build
run: npm run build

- name: set version
if: github.event_name == 'release'
run: npm --no-git-tag-version version ${GITHUB_REF#refs/*/}

- name: publish to npmjs.com
if: github.event_name == 'release'
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

- name: sonar scanner
run: npm run sonar -- -Dsonar.login=${{ secrets.SONAR_AUTH_TOKEN }}

0 comments on commit ec878a1

Please sign in to comment.