build and install dagger from source

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-04-25 21:19:33 +02:00
parent 7d447c263c
commit a4e1b392be
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
13 changed files with 152 additions and 12 deletions

12
__tests__/util.test.ts Normal file
View file

@ -0,0 +1,12 @@
import {describe, expect, test} from '@jest/globals';
import * as util from '../src/util';
describe('isValidUrl', () => {
test.each([
['https://github.com/dagger/dagger.git', true],
['https://github.com/dagger/dagger.git#refs/pull/2161/head', true],
['v0.2.7', false]
])('given %p', async (url, expected) => {
expect(util.isValidUrl(url)).toEqual(expected);
});
});