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

Add Unmaintained note to README.md #210

Add Unmaintained note to README.md

Add Unmaintained note to README.md #210

Workflow file for this run

on:
# Push to long living branches or PRs
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- run: yarn install --frozen-lockfile
- run: yarn lint
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- run: yarn install --frozen-lockfile
- run: yarn build
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- run: yarn install --frozen-lockfile
- run: yarn test
env:
CI: true