Skip to content

chore(deps): remove connex #605

chore(deps): remove connex

chore(deps): remove connex #605

name: Lint, Build & Test
on:
push:
branches: [ * ]

Check failure on line 5 in .github/workflows/lint-build-test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint-build-test.yaml

Invalid workflow file

You have an error in your yaml syntax on line 5
pull_request:
branches: [ * ]
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@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: 'yarn'
- name: Install
run: yarn install:all
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test
- name: Build
run: yarn run build