New publishing and CI workflow for Changed Elements React #464
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
node-version: [18] | |
name: Build and run tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Fetch all history for all branches and tags | |
- name: Fetch all branches | |
run: git fetch origin +refs/heads/*:refs/remotes/origin/* | |
- name: Checkout master branch | |
run: git checkout master | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: ESLint | |
run: npm run lint -- --max-warnings 0 | |
- name: Typecheck | |
run: npm run typecheck | |
- name: Check changed-elements-react unit test coverage | |
run: npm run test:cover --prefix ./packages/changed-elements-react | |
- name: Check if changeset is present | |
run: npx changeset status |