Skip to content

Commit

Permalink
Merge pull request karelkryda#24 from karelkryda/dev
Browse files Browse the repository at this point in the history
🔢 Version 2.0.6
  • Loading branch information
karelkryda authored Oct 15, 2022
2 parents 2cf308d + d49d4ac commit 7fed216
Show file tree
Hide file tree
Showing 13 changed files with 659 additions and 1,664 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,21 @@ jobs:

steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node.js 16
uses: actions/setup-node@v1
- name: Setup Node.js 18 🔃
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: 'https://registry.npmjs.org'

- name: Use CI Cache
uses: actions/cache@v2
- name: Use CI Cache 🕑
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node16-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node18-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node16-
${{ runner.os }}-node18-
- name: Install 🔧
run: npm install
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ name: CI - Lint + Tests + Build

on:
push:
branches: [ dev ]

pull_request:
branches: [ master ]
branches:
- dev

jobs:
build:
Expand All @@ -15,10 +13,10 @@ jobs:
- name: Checkout 🛎️
uses: actions/checkout@v2

- name: Setup NodeJS 16
uses: actions/setup-node@v1
- name: Setup NodeJS 18 🔃
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install 🔧
run: npm install
Expand All @@ -30,4 +28,4 @@ jobs:
run: npm test

- name: Build 🏗️
run: npm run build
run: npm run build
Loading

0 comments on commit 7fed216

Please sign in to comment.