Skip to content

chore/upgrade greenwood v0.30.0 #65

chore/upgrade greenwood v0.30.0

chore/upgrade greenwood v0.30.0 #65

Workflow file for this run

name: Continuous Integration Windows
on: [pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node: [18]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
yarn install --frozen-lockfile
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn clean && yarn build:win