Skip to content

fix(grammar): use fixed-length look-behind in FunC function definitions #63

fix(grammar): use fixed-length look-behind in FunC function definitions

fix(grammar): use fixed-length look-behind in FunC function definitions #63

Workflow file for this run

name: E2E tests
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
HUSKY: 0
jobs:
e2e-tests:
name: Tolk E2E tests (macOS)
runs-on: macos-latest
permissions:
contents: read
steps:
- name: Fetch Sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js 22.x
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 22.x
cache: "yarn"
- name: Setup EMSDK
uses: emscripten-core/setup-emsdk@4528d102f7230f0e7b276855c01ea1159be0e984 # v16
env:
EMSDK_VERSION: 4.0.15
with:
version: ${{ env.EMSDK_VERSION }}
actions-cache-folder: "emsdk-cache"
cache-key: emsdk-cache-${{ runner.os }}-${{ runner.arch }}-${{ env.EMSDK_VERSION }}
- name: Install dependencies
env:
YARN_ENABLE_HARDENED_MODE: false
run: yarn install --immutable
- name: Build WASM
run: yarn grammar:wasm
- name: Build Extension
run: yarn build
- name: Run all Tolk e2e tests
run: yarn run test:e2e:tolk