Skip to content

fix: use BigInt instead of Long for integer types (#272) #117

fix: use BigInt instead of Long for integer types (#272)

fix: use BigInt instead of Long for integer types (#272) #117

Workflow file for this run

name: post-submit
on:
push:
branches:
- dev
jobs:
test262test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: sbt
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Run test
env:
ESMETA_HOME: ${{ github.workspace }}
run: sbt test262EvalTest
- name: Report Status
if: failure()
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took,pullRequest
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}