Skip to content

Merge pull request #15 from ardriveapp/upload-folder-page #111

Merge pull request #15 from ardriveapp/upload-folder-page

Merge pull request #15 from ardriveapp/upload-folder-page #111

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18.x, 20.x]
command: ["lint", "format", "build", "test"]
steps:
- uses: actions/checkout@v3
- name: Set Up node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: "yarn"
- name: Install dependencies
run: yarn --immutable --immutable-cache
- run: yarn ${{ matrix.command }}