Skip to content

chore: upgrade Greenwood v0.33.0 #119

chore: upgrade Greenwood v0.33.0

chore: upgrade Greenwood v0.33.0 #119

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
yarn install --frozen-lockfile
- name: Lint
run: |
yarn lint
- name: Test
run: |
yarn test
- name: Build
run: |
arn build
env:
CI: true