Skip to content

added compile step and node module resolution to translucent-blueprint #74

added compile step and node module resolution to translucent-blueprint

added compile step and node module resolution to translucent-blueprint #74

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Setup environment
env:
SECRETS: ${{ toJSON(secrets) }}
# ENV_VARS: ${{ toJSON(vars) }}
run: |
echo "[$SECRETS]" | jq -r 'flatten[] | to_entries[] | "\(.key)=\(.value)"' >> $GITHUB_ENV
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: Formatting Checks
run: |
bun prettier --check .
# - name: Lint and Compile Checks
# run: |
# bun run lint
- name: Tests
run: bun test --timeout 10000