Skip to content

v0.0.5

v0.0.5 #32

Workflow file for this run

name: CI
on:
push:
branches: ['**', '!gh-pages']
pull_request:
branches: ['**', '!gh-pages']
create:
tags: 'v[0-9]*'
jobs:
test:
name: Test on ${{ matrix.os }}
strategy:
matrix: { os: [ubuntu-latest] }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json') }}
restore-keys: ${{ runner.os }}-
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: |
npm install
xvfb-run --auto-servernum npm test
npm run lint
deploy:
name: Deploy on ${{ matrix.os }}
needs: test
if: |
github.event_name == 'create' &&
startsWith(github.ref, 'refs/tags/')
strategy:
matrix: { os: [ubuntu-latest] }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json') }}
restore-keys: ${{ runner.os }}-
- uses: actions/setup-node@v2
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- run: |
npm install
npm run dist
sed -i 's/"private":\ true/"private":\ false/' package.json
sed -i -E 's/^dist\/?.*$//' .gitignore
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}