Skip to content

Allow members to be moderator #163

Allow members to be moderator

Allow members to be moderator #163

name: Build and Tests
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install modules
run: yarn install --frozen-lockfile
- name: Run lint
run: yarn lint
env:
CI: true
- name: Run tests
run: yarn test
env:
CI: true