Skip to content

feat(ci): add automated releases to ci #103

feat(ci): add automated releases to ci

feat(ci): add automated releases to ci #103

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['22.x', '24.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# This is needed to run headless Chrome on Ubuntu 24.04.
- name: Disable AppArmor
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
- run: npm ci
- run: npm run build
- run: npm run build:docs
# Use `--ignore-scripts` to avoid running the `pretest` script. We already
# built the project in a previous step, no need to build it again.
- run: npm run test --ignore-scripts
- run: npm run test:types
- run: npm run stylelint
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: npm clean-install
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --dry-run