Skip to content

Move semantic-release to release workflow #56

Move semantic-release to release workflow

Move semantic-release to release workflow #56

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE: 20
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: '${{ env.NODE }}'
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run typecheck
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node: [16, 18, 20]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm test
release:
if: github.repository == 'twbs/fantasticon' && github.ref == 'refs/heads/dev'
name: Release
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: '${{ env.NODE }}'
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release@23 --branches dev