Skip to content

feat: add integration plugin #615

feat: add integration plugin

feat: add integration plugin #615

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Cache Node Modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint