Skip to content

Add LocationModule

Add LocationModule #13

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install
- name: Run TypeScript
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: yarn tsc --noEmit
- name: Run ESLint
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: yarn lint
- name: Run Unit Tests
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: yarn test