Skip to content

Await inspect

Await inspect #500

Workflow file for this run

name: check
on:
push:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Lint
run: yarn check:lint
- name: Format
run: yarn check:format
- name: Types
run: yarn check:types
- name: Version
run:
git fetch origin main --depth 1 && ./scripts/if-no-version-change.sh
yarn version check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- uses: browser-actions/setup-chrome@v1
with:
install-dependencies: true
install-chromedriver: true
- uses: browser-actions/setup-firefox@v1
- name: Test
run: yarn test