Skip to content

test: Add basic distro testing #13

test: Add basic distro testing

test: Add basic distro testing #13

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: distro
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
timeout-minutes: 5
strategy:
matrix:
config:
- os: macOS-latest
kind: test
- os: windows-latest
kind: test
- os: ubuntu-latest
kind: test
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install deno
uses: denolib/setup-deno@master
with:
deno-version: 1.42.4
- name: Running tests
if: matrix.config.kind == 'test'
run: deno task test
distro:
name: Check distros
runs-on: ubuntu-latest
step:
- name: Runs without importmap
run: |
ls
mv ./deno.json ./denox.json
deno test --allow-read=. --allow-net ./test/ci-distributions.ts
mv ./denox.json ./deno.json