Skip to content

chore: moved from https://github.com/NordicSemiconductor #847

chore: moved from https://github.com/NordicSemiconductor

chore: moved from https://github.com/NordicSemiconductor #847

name: Test and Release
on: push
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- name: Authenticate with NPM registry
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
- name: Install dependencies
run: npm ci --no-audit
- name: Format source code with prettier
run: npx prettier -c ./
- name: Lint
run: npx standard
- name: Test
run: npm test
- name: Semantic release
continue-on-error: true
run: npx semantic-release