Skip to content

Merge pull request #353 from ardriveapp/PE-6440-files-in-private-driv… #1618

Merge pull request #353 from ardriveapp/PE-6440-files-in-private-driv…

Merge pull request #353 from ardriveapp/PE-6440-files-in-private-driv… #1618

Workflow file for this run

name: Node.js CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Set Up node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable --immutable-cache
- name: Test and Build Codebase
run: yarn ci