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

Merge pull request #381 from JSMonk/dependabot/npm_and_yarn/word-wrap… #111

Merge pull request #381 from JSMonk/dependabot/npm_and_yarn/word-wrap…

Merge pull request #381 from JSMonk/dependabot/npm_and_yarn/word-wrap… #111

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "14.x"
- run: yarn install
- run: yarn test
lint:
name: Lint test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "14.x"
- run: yarn install
- run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "14.x"
- run: yarn install
- run: yarn build