nim-ethers/.github/workflows/ci.yml

32 lines
662 B
YAML
Raw Normal View History

2022-01-26 13:41:22 +00:00
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
2023-12-12 08:13:38 +00:00
nim: [1.6.16, stable]
2022-01-26 13:41:22 +00:00
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Nim
uses: iffy/install-nim@v3
with:
version: ${{ matrix.nim }}
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: '18'
2022-01-26 13:41:22 +00:00
- name: Install test node
working-directory: testnode
run: npm install
- name: Run test node
2022-01-27 09:07:52 +00:00
working-directory: testnode
2022-01-26 13:41:22 +00:00
run: npm start &
- name: Build
run: nimble install -y
- name: Test
run: nimble test -y