⬆️ Updates peter-evans/create-or-update-comment digest to 213b1f9 #2711
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: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
- 'releases/*' | |
jobs: | |
cloc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Print environment | |
run: | | |
whoami | |
node --version | |
npm --version | |
echo "GitHub ref: $GITHUB_REF" | |
echo "GitHub event: $GITHUB_EVENT" | |
env: | |
GITHUB_REF: ${{ github.ref }} | |
GITHUB_EVENT: ${{ github.event_name }} | |
- name: Set up cloc | |
run: | | |
sudo apt update | |
sudo apt -y install cloc | |
- name: Print lines of code | |
run: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
max-parallel: 2 | |
matrix: | |
node-version: | |
- 10.x | |
- 11.x | |
- 12.x | |
- 14.x | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: 4.11.1 | |
- name: Install Dependencies | |
run: pnpm i | |
- name: Lint & Format | |
run: | | |
pnpm run all --if-present | |
- name: Check | |
run: | | |
pnpm run check:all --if-present |