Skip to content

Zack pnpm and segment build and test #473

Zack pnpm and segment build and test

Zack pnpm and segment build and test #473

Workflow file for this run

name: pr
on: [pull_request]
env:
NX_DAEMON: false
NX_VERBOSE_LOGGING: true
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
test:
name: 'Test (node ${{ matrix.node }})'
runs-on: ubuntu-latest
strategy:
matrix:
node: [16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 7
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- name: Install Dependencies
run: pnpm --prefer-offline install
- name: Run Checks
run: pnpm pr