Skip to content

ci: update CI workflow to enhance testing and publishing steps #117

ci: update CI workflow to enhance testing and publishing steps

ci: update CI workflow to enhance testing and publishing steps #117

Workflow file for this run

name: test
on: [push, pull_request]
permissions:
contents: write
packages: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install SoftHSM
run: |
sudo apt-get update -y
sudo apt-get install -y softhsm2
echo "SoftHSM2 is installed"
# Create a configuration file
echo "directories.tokendir = ${{ github.workspace }}/token" > softhsm2.conf
echo "objectstore.backend = file" >> softhsm2.conf
echo "log.level = ERROR" >> softhsm2.conf
echo "slots.removable = false" >> softhsm2.conf
echo "slots.mechanisms = ALL" >> softhsm2.conf
echo "library.reset_on_fork = false" >> softhsm2.conf
# Create a directory for the token
mkdir -p ${{ github.workspace }}/token
# Create a symlink to the SoftHSM library
softhsm2-util --init-token --so-pin "12345" --pin "12345" --slot 0 --label "My slot 0"
env:
SOFTHSM2_CONF: ${{ github.workspace }}/softhsm2.conf
- name: Install NSS
run: |
sudo apt-get update -y
sudo apt-get install -y libnss3-tools
- name: Install dependencies
run: yarn
- name: Run lint
run: yarn lint
- name: Run test with coverage
run: npm run coverage
env:
SOFTHSM2_CONF: ${{ github.workspace }}/softhsm2.conf
- name: Coveralls
uses: coverallsapp/github-action@v2
publish:
runs-on: ubuntu-latest
needs: test
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: "22.x"
cache: "yarn"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
generate_release_notes: true
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}