-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3aa34e2
commit f6a9327
Showing
7 changed files
with
20,908 additions
and
174 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,14 +18,11 @@ jobs: | |
fetch-depth: 0 | ||
persist-credentials: false | ||
- name: Setup Node.js | ||
uses: actions/[email protected] | ||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/setup-node@v3 | ||
with: | ||
key: npm-${{ hashFiles('./package-lock.json') }} | ||
path: ~/.npm | ||
restore-keys: | | ||
npm- | ||
cache: 'npm' | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
- name: Install dependencies | ||
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline | ||
- name: Build | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,16 +18,11 @@ jobs: | |
with: | ||
persist-credentials: false | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3.5.1 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 12 | ||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
key: npm-${{ hashFiles('./package-lock.json') }} | ||
path: ~/.npm | ||
restore-keys: | | ||
npm- | ||
cache: 'npm' | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
- name: Install dependencies | ||
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline | ||
- name: Format | ||
|
@@ -42,16 +37,11 @@ jobs: | |
with: | ||
persist-credentials: false | ||
- name: Setup Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 12 | ||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/setup-node@v3 | ||
with: | ||
key: npm-${{ hashFiles('./package-lock.json') }} | ||
path: ~/.npm | ||
restore-keys: | | ||
npm- | ||
cache: 'npm' | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
- name: Install dependencies | ||
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline | ||
- name: Lint | ||
|
@@ -66,16 +56,11 @@ jobs: | |
with: | ||
persist-credentials: false | ||
- name: Setup Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 12 | ||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/setup-node@v3 | ||
with: | ||
key: npm-${{ hashFiles('./package-lock.json') }} | ||
path: ~/.npm | ||
restore-keys: | | ||
npm- | ||
cache: 'npm' | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
- name: Install dependencies | ||
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline | ||
- name: Spellcheck | ||
|
@@ -90,16 +75,11 @@ jobs: | |
with: | ||
persist-credentials: false | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3.5.1 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 12 | ||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
key: npm-${{ hashFiles('./package-lock.json') }} | ||
path: ~/.npm | ||
restore-keys: | | ||
npm- | ||
cache: 'npm' | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
- name: Install dependencies | ||
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline | ||
- name: Test | ||
|
@@ -118,16 +98,11 @@ jobs: | |
with: | ||
persist-credentials: false | ||
- name: Setup Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 12 | ||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/setup-node@v3 | ||
with: | ||
key: npm-${{ hashFiles('./package-lock.json') }} | ||
path: ~/.npm | ||
restore-keys: | | ||
npm- | ||
cache: 'npm' | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
- name: Install dependencies | ||
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline | ||
- name: Types | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v16 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,4 +68,4 @@ outputs: | |
name: Release me! | ||
runs: | ||
main: dist/index.js | ||
using: node12 | ||
using: node16 |
Oops, something went wrong.