Skip to content

1.3.1

1.3.1 #50

Workflow file for this run

name: Build, Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Install lint and Build 🔧
uses: actions/setup-node@v2
with:
node-version: '16.x'
- run: npm i
- run: npm run lint
- run: npm run build