2
0
mirror of https://github.com/status-im/status-web.git synced 2025-03-02 21:20:59 +00:00
2021-09-27 11:08:41 +10: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 14
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: yarn install --frozen-lockfile
- run: yarn build
- run: DEBUG=communities:test* yarn test