fix: Pass chunkGraph
through in generate
function (#300)
#76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate | |
on: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- synchronize | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['20', '18', '16'] | |
name: Node v${{ matrix.node }} | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Checkout Master | |
run: git branch -f master origin/master | |
- name: Install pnpm | |
run: npm install pnpm -g | |
- name: Sanity Check | |
run: | | |
echo branch `git branch --show-current`; | |
echo node `node --version`; | |
echo yarn `pnpm --version` | |
- name: pnpm install | |
run: pnpm install | |
- name: Audit Dependencies | |
run: pnpm security | |
- name: Build Packages | |
run: pnpm --recursive build | |
- name: Lint Repo | |
run: pnpm lint:js | |
- name: Run Tests | |
run: pnpm ci:coverage |