Skip to content

build(deps): bump word-wrap from 1.2.3 to 1.2.4 #29

build(deps): bump word-wrap from 1.2.3 to 1.2.4

build(deps): bump word-wrap from 1.2.3 to 1.2.4 #29

Workflow file for this run

name: Verify
on:
pull_request:
branches:
- main
concurrency:
group: verify-${{ github.head_ref }}
cancel-in-progress: true
env:
NODE_VERSION: 16.x
jobs:
build:
name: build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Configure package manager
run: |
echo Configuring NPM_TOKEN globally for .npmrc
npm config set '//registry.npmjs.org/:_authToken' ${{ env.NPM_TOKEN }}
npm whoami
env:
NPM_TOKEN: ${{ secrets.NPM_READ_TOKEN }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Verify lint
run: yarn lint
# - name: Test
# run: yarn test --coverage --silent
# - name: Upload coverage to Coveralls
# uses: coverallsapp/github-action@1.1.3
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}