mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Upgrading to node 16 for workflows, updating regex
This commit is contained in:
parent
417e75ad4e
commit
38023a445d
4 changed files with 31 additions and 3 deletions
2
.github/workflows/data-validate.yml
vendored
2
.github/workflows/data-validate.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 13.x
|
||||
node-version: 16.x
|
||||
|
||||
- name: Cache/Restore node modules
|
||||
uses: actions/cache@v1
|
||||
|
|
|
|||
2
.github/workflows/populate-readme.yml
vendored
2
.github/workflows/populate-readme.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 13.x
|
||||
node-version: 16.x
|
||||
|
||||
- name: Cache/Restore node modules
|
||||
uses: actions/cache@v1
|
||||
|
|
|
|||
|
|
@ -12,5 +12,9 @@ export const config = {
|
|||
cache: "manual",
|
||||
path: "/*",
|
||||
// Pass all assets to the netlify asset server
|
||||
excluded_patterns: ["/_assets/*", "/_shared/*", "/**/*.js"],
|
||||
excluded_patterns: [
|
||||
'^\\/_assets\\/[^\\/]*$',
|
||||
'^\\/shared\\/[^\\/]*$',
|
||||
'^\\/**\\/[^\\/]*$',
|
||||
],
|
||||
};
|
||||
|
|
|
|||
24
src/data.js
24
src/data.js
|
|
@ -21,6 +21,30 @@
|
|||
* Keep this a commonjs export.
|
||||
*/
|
||||
module.exports = [
|
||||
{
|
||||
name: 'Vladimir Vo',
|
||||
description: 'Frontend developer with passion for great product design',
|
||||
url: 'https://vldmr.website/uses',
|
||||
twitter: '@v1in_',
|
||||
emoji: '🖖',
|
||||
country: '🇵🇱',
|
||||
computer: 'apple',
|
||||
phone: 'iphone',
|
||||
tags: [
|
||||
'Astro',
|
||||
'Front End',
|
||||
'Developer',
|
||||
'JavaScript',
|
||||
'TypeScript',
|
||||
'React',
|
||||
'Next',
|
||||
'JAMstack',
|
||||
'Netlify',
|
||||
'Vercel',
|
||||
'HTML',
|
||||
'CSS',
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'uncenter',
|
||||
description: 'Very incompetent developer',
|
||||
|
|
|
|||
Loading…
Reference in a new issue