Skip to content

v1.1.1

v1.1.1 #7

name: Test / Publish
on:
release:
types: [published]
# types: [created]
jobs:
test:
name: Test (Node ${{ matrix.node-version }} on ${{ matrix.os }})
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
repository: vHeemstra/is-apng
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# cache: 'npm'
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test
publish-npm:
name: Publish to NPM
needs: test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
repository: vHeemstra/is-apng
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
# cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}