Skip to content

Fix github registry metadata fetching (close #821) #177

Fix github registry metadata fetching (close #821)

Fix github registry metadata fetching (close #821) #177

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Testing
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('test/**') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.22.x
- name: Setup Deno
uses: denoland/setup-deno@main
with:
deno-version: v1.x
- name: Run `go test`
run: go test ./server ./server/config ./server/storage -v
- name: Run `deno test`
run: deno run -A test/bootstrap.ts