Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

chore/upgrade greenwood v0.30.0 #200

chore/upgrade greenwood v0.30.0

chore/upgrade greenwood v0.30.0 #200

Workflow file for this run

name: Continous Integration
on: [pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: |
yarn install --frozen-lockfile
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn clean && yarn build