Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 0 additions & 97 deletions .github/workflows/release.yaml

This file was deleted.

10 changes: 2 additions & 8 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
branches:
- main
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.20.0'
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/action-setup@v2
with:
version: 8
version: 10.6.0
run_install: false
- uses: actions/checkout@v3
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { authenticated, authenticatedInTime } from './helpers/authenticated.js'
import { getStorageDirectory, setup, type UserStuff } from './helpers/setup.js'
import { synced } from './helpers/synced.js'

describe('auth provider for automerge-repo', () => {
describe.skip('auth provider for automerge-repo', () => {
it('does not authenticate users that do not belong to any teams', async () => {
const {
users: { alice, bob },
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, it, expect } from 'vitest'
import { buildServerUrl } from '../buildServerUrl.js'

describe('buildServerUrl', () => {
describe.skip('buildServerUrl', () => {
it('should prepend http:// when no protocol is provided', () => {
const { protocol, hostname } = buildServerUrl('example.com')
expect(protocol).toBe('http:')
Expand Down
Loading
Loading