Skip to content

release(v2.0.2-beta): update endpoints for Feb 2025 #61

release(v2.0.2-beta): update endpoints for Feb 2025

release(v2.0.2-beta): update endpoints for Feb 2025 #61

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18' # Set the Node.js version here
- name: Cache Yarn packages
uses: actions/cache@v4
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build project
run: yarn run release
- name: Test project
run: yarn test