Skip to content

Infrastructure maintenance #2033

Infrastructure maintenance

Infrastructure maintenance #2033

Workflow file for this run

name: CI
on:
push:
branches: ['master']
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16']
steps:
- name: Check out code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install
- run: make pkgs-build
- run: make pkgs-lint
- run: make pkgs-test