Skip to content

⬆️ Bump word-wrap from 1.2.3 to 1.2.4 #184

⬆️ Bump word-wrap from 1.2.3 to 1.2.4

⬆️ Bump word-wrap from 1.2.3 to 1.2.4 #184

Workflow file for this run

name: ci
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build And Test
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: |
npm ci --legacy-peer-deps
npm run build
npm run lint
npm run test:ci
npm run build-storybook
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}