Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
iiroj committed Oct 14, 2023
2 parents 5c55b84 + 499e367 commit cb7d3f8
Show file tree
Hide file tree
Showing 74 changed files with 11,600 additions and 10,652 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
6 changes: 6 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
"changelog": ["@changesets/changelog-github", { "repo": "okonet/lint-staged" }],
"access": "public",
"baseBranch": "master"
}
2 changes: 2 additions & 0 deletions .changeset/sour-terms-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
3 changes: 3 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@commitlint/config-conventional"]
}
13 changes: 0 additions & 13 deletions .github/dependabot.yml

This file was deleted.

18 changes: 6 additions & 12 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,22 @@ name: Security Analysis

on:
push:
# Run on pushes to specific branches
branches:
- "*"
# Do not run on tags
tags-ignore:
- "*"
- master
pull_request:
# Run on to branches with an open PR
branches:
- "*"
- master
schedule:
# At 00:00 on Monday.
- cron: '0 0 * * 1'
- cron: '0 0 * * 1' # 00:00 on Monday.

jobs:
CodeQL:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v2
- uses: github/codeql-action/init@v1
- uses: actions/checkout@v3
- uses: github/codeql-action/init@v2
with:
languages: javascript
- uses: github/codeql-action/analyze@v1
- uses: github/codeql-action/analyze@v2
22 changes: 22 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Install

on:
workflow_call:

jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: actions/cache@v3
id: cache-node_modules
with:
path: node_modules
key: ubuntu-latest-20-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
ubuntu-latest-20-${{ hashFiles('**/package-lock.json') }}
- if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci
129 changes: 0 additions & 129 deletions .github/workflows/main.yml

This file was deleted.

0 comments on commit cb7d3f8

Please sign in to comment.