Skip to content

chore: fix gh workflows(?) #494

chore: fix gh workflows(?)

chore: fix gh workflows(?) #494

Workflow file for this run

name: Continous Integration
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
# Waiting for API key approval
# - name: Run Tests
# run: yarn coverage
- name: Build
run: yarn build