Skip to content

Add build and lint workflow #2

Add build and lint workflow

Add build and lint workflow #2

Workflow file for this run

name: Build and Lint
on:
pull_request:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '22.11.0'
registry-url: 'https://registry.npmjs.org'
- run: |
yarn
yarn build
yarn lint