Skip to content

Commit

Permalink
fix: update runner size and icons
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelmaeuer committed Feb 8, 2023
1 parent 0ec60ef commit de1e0e7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ on:
workflow_call:
inputs:
install-all:
description: 'Install dependencies using `install-all`'
description: "Install dependencies using `install-all`"
required: false
type: boolean
default: false
generate-keys:
description: 'Whether to run command for dummy key generation'
description: "Whether to run command for dummy key generation"
required: false
type: boolean
default: false
log-level:
description: 'Which log level to use for `super-linter`'
description: "Which log level to use for `super-linter`"
required: false
type: string
default: 'VERBOSE'
default: "VERBOSE"
validate-all-codebase:
description: 'Whether to run validation on all files'
description: "Whether to run validation on all files"
required: false
type: boolean
default: true
Expand Down Expand Up @@ -121,7 +121,7 @@ env:
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest-16-cores
runs-on: ubuntu-latest-4-cores
timeout-minutes: 90
permissions:
contents: read
Expand All @@ -137,15 +137,15 @@ jobs:
with:
persist-credentials: false
repository: swrlab/node-utils
ref: 'main'
path: '.utils'
ref: "main"
path: ".utils"

- name: ⛺️ Install Node.js
- name: 🏗 Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
cache: "yarn"
cache-dependency-path: "**/yarn.lock"

- name: 📦 Install Dependencies (if `install:all`)
if: inputs.install-all == true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: 👀 Checkout Code
uses: actions/checkout@v3

- name: ⛺️ Install Node.js
- name: 🏗 Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
Expand Down

0 comments on commit de1e0e7

Please sign in to comment.