Prepare for the v0.13.0 release #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js Builds | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- node-version: 18.x | |
- node-version: 20.x | |
status: "LTS" | |
- node-version: 22.x | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build | |
run: | | |
npm install | |
npm run build | |
- name: Package | |
run: npm pack | |
- name: Test | |
run: npm run nyc-ci | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
if: ${{ matrix.status == 'LTS' }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Example | |
run: | | |
cd example | |
npm install | |
npm run build |