Editorial: Fix typo in FinalizationRegistry global property link id #1494
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: 'esmeta typecheck' | |
on: [pull_request] | |
jobs: | |
esmeta-typecheck: | |
name: 'esmeta typecheck' | |
runs-on: ubuntu-22.04 | |
env: | |
ESMETA_HOME: vendor/esmeta | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup SBT | |
uses: sbt/setup-sbt@v1 | |
- name: download esmeta | |
run: | | |
mkdir -p "${ESMETA_HOME}" | |
cd "${ESMETA_HOME}" | |
git init | |
git remote add origin https://github.com/es-meta/esmeta.git | |
git fetch --depth 1 origin 400c5bfec94899d6d41d4cfe61f6fc258fe41fb5 ;# v0.4.3 | |
git checkout FETCH_HEAD | |
- name: build esmeta | |
run: | | |
cd "${ESMETA_HOME}" | |
sbt assembly | |
- name: link | |
run: | | |
rmdir "${ESMETA_HOME}"/ecma262 \ | |
&& ln -s "$(pwd)" "${ESMETA_HOME}"/ecma262 | |
- name: typecheck | |
run: '"${ESMETA_HOME}"/bin/esmeta tycheck -status -tycheck:log -tycheck:ignore=esmeta-ignore.json' | |