Skip to content

fix: add AU operator data correctly #301

fix: add AU operator data correctly

fix: add AU operator data correctly #301

Workflow file for this run

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: 20
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: 20
cache: "yarn"
- name: Install dependencies
run: |
yarn install --immutable
- name: Build library
run: |
yarn build