Skip to content

Commit

Permalink
v1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRefactoring committed Apr 5, 2024
1 parent 195d37b commit 3b41e87
Show file tree
Hide file tree
Showing 4 changed files with 381 additions and 309 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
name: ci
on: push
name: Comprehensive CI

on:
push:
repository_dispatch:
types: [ pr-approved ]

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [ 16.x, 18.x, 20.x ]
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down Expand Up @@ -56,19 +60,17 @@ jobs:

test_integration:
name: Integration Tests
needs:
- lint
- test_unit
needs: [ lint, test_unit ]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
max-parallel: 1
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Installing dependencies
run: npm ci
- name: Creating `.env` file
Expand Down
Loading

0 comments on commit 3b41e87

Please sign in to comment.