chore: format #263
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smoketest | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
jobs: | |
format_check: | |
runs-on: ubuntu-latest | |
name: Check formatting | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: "yarn" | |
- name: Install dependencies | |
run: | | |
yarn install --immutable | |
- name: Check formatting | |
run: | | |
yarn format-check | |
- name: Validate ARFCN lists | |
run: | | |
yarn test | |
build_test: | |
runs-on: ubuntu-latest | |
name: Test build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: "yarn" | |
- name: Install dependencies | |
run: | | |
yarn install --immutable | |
- name: Build library | |
run: | | |
yarn build |