Skip to content

Bump eslint-config-standard-with-typescript from 43.0.0 to 43.0.1 #540

Bump eslint-config-standard-with-typescript from 43.0.0 to 43.0.1

Bump eslint-config-standard-with-typescript from 43.0.0 to 43.0.1 #540

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
static-check:
name: Format and Lint
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install node
uses: actions/setup-node@v4
- run: npm install -g yarn
- run: yarn install
- run: yarn format
- run: yarn linter
build-test:
name: Build and Test
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install node
uses: actions/setup-node@v4
- run: npm install -g yarn
- run: yarn install
- run: yarn build
- run: yarn test