Skip to content

add a gh action to check formatting of e2e test scripts #1

add a gh action to check formatting of e2e test scripts

add a gh action to check formatting of e2e test scripts #1

Workflow file for this run

name: Lint e2e_tests
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ./e2e_tests
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: "CI=false yarn build"
- run: yarn lint