41 lines
960 B
YAML
Raw Normal View History

2021-04-10 02:16:12 +02:00
name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
2021-04-10 02:22:53 +02:00
deno:
[1.x, "1.33.1", canary, ~1.32, b31cf9fde6ad5398c20370c136695db77df6beeb]
2021-04-10 02:16:12 +02:00
steps:
2023-01-12 16:57:40 -05:00
- uses: actions/checkout@v3
2021-04-10 02:16:12 +02:00
- name: Setup Deno
uses: ./
with:
2021-04-10 02:20:00 +02:00
deno-version: ${{ matrix.deno }}
2021-04-10 02:16:12 +02:00
- name: Test Deno
run: deno run https://deno.land/std/examples/welcome.ts
2021-04-10 02:22:53 +02:00
- name: Test `deno install`
run: |
deno install --allow-net -n deno_curl https://deno.land/std/examples/curl.ts
deno_curl https://deno.land/std/examples/curl.ts
2021-04-10 02:22:53 +02:00
- name: Format
2021-04-10 02:25:44 +02:00
if: runner.os == 'Linux' && matrix.deno == 'canary'
2021-04-10 02:22:53 +02:00
run: npm run fmt:check
- name: Lint
2021-04-10 02:25:44 +02:00
if: runner.os == 'Linux' && matrix.deno == 'canary'
2021-04-10 02:22:53 +02:00
run: npm run lint