This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
chore(deps): bump browserify-sign from 4.2.1 to 4.2.2 #50
Workflow file for this run
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: Run Unit Tests | |
on: [push] | |
jobs: | |
frontend: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
env: | |
NODE_ENV: local | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v2 | |
with: | |
cache: 'yarn' | |
node-version: '16' | |
- name: install deps | |
run: yarn --frozen-lockfile --prefer-offline | |
- name: run tests | |
run: yarn test |