reordered and extended testset #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LIonWeb integration tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1.1.1 | |
with: | |
deno-version: v1.x # run with the latest stable version of Deno | |
- name: Log Deno version | |
run: deno --version | |
- name: Run clone script | |
run: ./clone.sh | |
env: | |
LIONWEB_PAT: ${{ secrets.LIONWEB_PAT }} | |
- name: Run Deno integration tests | |
run: ./test.sh | |