2
0
mirror of https://github.com/status-im/status-web.git synced 2025-03-03 13:40:57 +00:00
2022-02-04 10:01:49 +01:00

21 lines
374 B
YAML

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node 16
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: yarn install --frozen-lockfile
- run: yarn build
- run: DEBUG=communities:test* yarn test