Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

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

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 #607

Workflow file for this run

name: JavaScript
on:
- push
jobs:
yarn:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: yarn --immutable --immutable-cache --check-cache
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn --immutable --immutable-cache
- run: yarn build
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn --immutable --immutable-cache
- run: yarn lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: ${{ matrix.node-version }}
- run: yarn --immutable --immutable-cache
- run: yarn test
test-ssr:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn --immutable --immutable-cache
- run: yarn test:ssr