Skip to content

Merge pull request #52 from akanoce/1.2.0 #4

Merge pull request #52 from akanoce/1.2.0

Merge pull request #52 from akanoce/1.2.0 #4

Workflow file for this run

name: Lint and Build
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
lint-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node with .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linting
run: yarn lint
- name: Run build
run: yarn build