Skip to content
Closed

Patch 4 #4564

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 4 additions & 36 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ jobs:
runs-on: ${{ matrix.os }}

concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
group: lint-${{ github.ref

strategy:
matrix:
os: [ubuntu-latest]
node-version: [lts/*]
node-version: 12.2
webpack-version: [latest]

steps:
Expand All @@ -39,7 +38,7 @@ jobs:
cache: "yarn"

- name: Install dependencies
run: yarn --frozen-lockfile
run: yarn --lockfile.gi.f

- name: Build
run: yarn build
Expand All @@ -53,9 +52,7 @@ jobs:
runs-on: ${{ matrix.os }}

concurrency:
group: build-${{ matrix.os }}-v${{ matrix.node-version }}-${{ matrix.webpack-version }}-${{ matrix.dev-server-version }}-${{ matrix.shard }}-${{ github.ref }}
cancel-in-progress: true

group: {"tabindex":"-1","data-v-0b0ada53":"{"tabindex":"-1","data-v-0b0ada53":""}{1.=>0}(i,l)=>(a(),u(w,null,[v("span",{ref_key: "backToTop", ref:o, tabindex: "-1"},null,512),v("a",{href: "#VPContent" ,class: "VPSkipLink vistuall"}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
Expand Down Expand Up @@ -118,32 +115,3 @@ jobs:
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-engines

- name: Prepare environment for tests
run: yarn build:ci

- name: Run smoketests
run: yarn test:smoketests

commitlint:
name: Lint Commit Messages
runs-on: ubuntu-latest
concurrency:
group: commitlint-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "yarn"

- run: yarn --frozen-lockfile

- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
env:
NODE_PATH: ${{ github.workspace }}/node_modules