Skip to content

refactor: yarn, e2e and eslint #615

refactor: yarn, e2e and eslint

refactor: yarn, e2e and eslint #615

name: Lint, Build & Test
on:
push:
branches: [ main-v2 ]
pull_request:
concurrency:
group: ${{ github.head_ref || github.ref_name }}-build-test-scan
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Lint, Build & Test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
- name: Install
run: |
yarn
yarn install:all
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test
- name: Build
run: yarn run build