Skip to content

chore(deps-dev): bump semantic-release from 21.0.9 to 21.1.1 #142

chore(deps-dev): bump semantic-release from 21.0.9 to 21.1.1

chore(deps-dev): bump semantic-release from 21.0.9 to 21.1.1 #142

Workflow file for this run

name: Test and Release
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
node: ['14.17', '16', '18', '20']
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm install --omit=dev --ignore-scripts
working-directory: test/fixtures/workspace
- run: npm run tape
release:
needs: test
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14
uses: actions/setup-node@v3
with:
node-version: '20'
cache: npm
- run: npm ci
- run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}