community-dapp/.github/workflows/CI.yml

24 lines
421 B
YAML
Raw Normal View History

name: CI
on:
pull_request:
branches:
2023-03-06 20:11:41 +00:00
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
2023-03-06 20:11:41 +00:00
- uses: actions/checkout@v3
- name: Use Node.js
2023-03-06 20:11:41 +00:00
uses: actions/setup-node@v3
with:
2023-03-06 20:11:41 +00:00
node-version: 19.x
- name: Install deps
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test