Skip to content

chore: Added Behon Baker to list of contributors in package.json #534

chore: Added Behon Baker to list of contributors in package.json

chore: Added Behon Baker to list of contributors in package.json #534

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '18'
cache: yarn
- name: Install dependencies
run: yarn install
- name: Linting
run: yarn lint
- name: Testing
run: yarn test
- name: Build
run: yarn build