Skip to content

Commit

Permalink
Merge pull request #5 from natac13/chore/update-deps
Browse files Browse the repository at this point in the history
chore: update deps and code to make remix-auth-github
  • Loading branch information
Lzok authored Apr 9, 2024
2 parents 994df86 + f92bcef commit 2893049
Show file tree
Hide file tree
Showing 8 changed files with 2,200 additions and 2,628 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ module.exports = {
extends: [
"plugin:unicorn/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
rules: {
"prefer-const": "off",
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Type of version (major / minor / patch)'
description: "Type of version (major / minor / patch)"
required: true

jobs:
Expand All @@ -19,8 +19,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
node-version: 18
cache: "npm"
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Setup Git
Expand All @@ -31,4 +31,4 @@ jobs:
run: npm version ${{ github.event.inputs.version }}

- name: Push latest version
run: git push origin main --follow-tags
run: git push origin main --follow-tags
26 changes: 16 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: CI

on: [push]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
Expand All @@ -10,10 +16,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node 14
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand All @@ -28,10 +34,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node 14
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand All @@ -46,10 +52,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node 14
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand All @@ -64,10 +70,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node 14
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand All @@ -76,4 +82,4 @@ jobs:
run: npm run build

- name: Lint
run: npm run lint
run: npm run lint
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run build
Expand Down
Loading

0 comments on commit 2893049

Please sign in to comment.