Skip to content

add ci job to test deno install #7749

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
49 changes: 49 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,55 @@ jobs:
shell: bash
working-directory: ${{ steps.tmp-dir.outputs.path }}

test-installation-deno:
needs:
- pkg-pr-new
strategy:
fail-fast: false
matrix:
include:
- os: macos-13
- os: macos-14
- os: ubuntu-24.04
- os: ubuntu-24.04-arm
- os: windows-latest
runs-on: ${{ matrix.os }}
env:
RUST_BACKTRACE: "1"
steps:
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x

- name: Checkout
uses: actions/checkout@v4

- name: Make test directory
id: tmp-dir
shell: bash
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
dir=$(powershell -Command "[System.IO.Path]::GetTempPath() + [System.Guid]::NewGuid().ToString()" | tr -d '\r')
mkdir -p "$dir"
else
dir=$(mktemp -d)
fi
echo "path=$dir" >> "$GITHUB_OUTPUT"
cp -r tests/package_tests/installation_test/* "$dir"

- name: Install ReScript package
run: |
COMMIT_SHA="${{ github.event.pull_request.head.sha || github.sha }}"
deno add "https://pkg.pr.new/rescript-lang/rescript@${COMMIT_SHA::7}"
shell: bash
working-directory: ${{ steps.tmp-dir.outputs.path }}

- name: Test installation
run: deno run -A npm:rescript && deno run -A npm:rescript legacy build && cat src/Test.res.js
shell: bash
working-directory: ${{ steps.tmp-dir.outputs.path }}

test-integration-rewatch:
needs:
- pkg-pr-new
Expand Down
3 changes: 3 additions & 0 deletions tests/package_tests/installation_test/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name": "install-test"
}
Loading