Skip to content

Bump unzip-stream from 0.3.1 to 0.3.2 (#70) #12

Bump unzip-stream from 0.3.1 to 0.3.2 (#70)

Bump unzip-stream from 0.3.1 to 0.3.2 (#70) #12

Workflow file for this run

name: Tests # mainly for the status badge
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
node-version: [lts/*, latest]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
publish-npm:
needs: test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}