Skip to content

Merge branch 'main' of https://github.com/0xDeRamp/deramp-extension #2

Merge branch 'main' of https://github.com/0xDeRamp/deramp-extension

Merge branch 'main' of https://github.com/0xDeRamp/deramp-extension #2

Workflow file for this run

name: Unit test
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 12 * * 4'
jobs:
unit-test:
name: Unit test
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm run test:unit