revert(SupportIteratorHit): mark it before 2.1.9 (not sure) #102
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: testJs | |
on: [push, pull_request] | |
env: | |
nim-version: 'stable' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "! contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache nimble | |
id: cache-nimble | |
uses: actions/cache@v2 | |
with: | |
path: ~/.nimble | |
key: ${{ runner.os }}-nimble | |
- uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: ${{ env.nim-version }} | |
- name: Test JS backend | |
run: nimble testJs |