Skip to content

feat: Added epoch J2000.0 almanac data for inferior and exterior planets to planets module in @observerly/astrometry. #122

feat: Added epoch J2000.0 almanac data for inferior and exterior planets to planets module in @observerly/astrometry.

feat: Added epoch J2000.0 almanac data for inferior and exterior planets to planets module in @observerly/astrometry. #122

Workflow file for this run

name: astrometry/lint
on:
pull_request:
branches:
- main
jobs:
unit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout 🛎
uses: actions/checkout@master
# Setup .npmrc file to publish to GitHub Packages
- name: Setup node env 🏗 and .npmrc file to publish to GitHub Packages
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file:
scope: '@observerly'
- name: Cache node_modules 📦
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install pnpm globally
run: npm install -g [email protected]
- name: Install project dependencies 👨🏻‍💻
run: pnpm install
- name: Run formatting checks 🧹
run: pnpm run format