Skip to content
This repository has been archived by the owner on Apr 27, 2024. It is now read-only.

chore(deps): update dependency inquirer to v9.2.18 #1505

chore(deps): update dependency inquirer to v9.2.18

chore(deps): update dependency inquirer to v9.2.18 #1505

Workflow file for this run

name: CI/CD
on:
push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x, 18.x, 19.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test:coverage
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: yarn lint
- run: if [ ${{ matrix.node-version }} == 16.x ]; then yarn node ./scripts/publish-on-tag.js; fi
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}