Skip to content

new provider "boilerplate" #9

new provider "boilerplate"

new provider "boilerplate" #9

Workflow file for this run

name: Lint
on:
push:
branches:
- "*"
- "*/*"
pull_request:
paths:
- "**.ts"
- "**.tsx"
- "**.js"
- "**.jsx"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
- name: Setup NodeJS
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
with:
version: 7.30.0
- name: Install and Lint
run: |
pnpm install
pnpm lint