Skip to content

Configured per-package build on CI #243

Configured per-package build on CI

Configured per-package build on CI #243

Workflow file for this run

name: "Main workflow"
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
env:
CI_JOB_NUMBER: 1
steps:
- uses: actions/checkout@v1
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- run: yarn install
- run: yarn lint-test
build:
runs-on: ubuntu-latest
env:
CI_JOB_NUMBER: 2
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- run: yarn install
- run: yarn build:modified origin/${{ github.event.pull_request.base.ref }}