Skip to content

fix: deploy:test

fix: deploy:test #126

Workflow file for this run

name: Test CI
on:
push:
branches: [ "master", "release/*", "test" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Yarn
run: npm install -g yarn
- name: Install Dependencies
run: yarn install
- run: npm test