chore(deps): update dependency adm-zip to v0.5.14 #999
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node: [16, 18, 20] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm i pnpm yarn -g | |
- run: git config --global user.name "GitHub Actions" | |
- run: git config --global user.email "bots@github.com" | |
- run: npm install | |
- run: npm i @vitest/coverage-v8 | |
- run: npx ts-standard | |
- run: npx vitest run --coverage | |
- run: npx codecov | |
publish: | |
if: startsWith(github.ref, 'refs/tags') | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
registry-url: https://registry.npmjs.org | |
- run: npm install | |
- run: npm run build | |
- run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |