Skip to content

feat: use reservoir execution #743

feat: use reservoir execution

feat: use reservoir execution #743

Workflow file for this run

name: Lint
on:
push:
branches: ['**']
jobs:
install-build-lint-and-deploy:
name: Install dependencies, build and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack before setting up Node
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: '.npmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Lint
run: yarn lint