-
Notifications
You must be signed in to change notification settings - Fork 1
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
0a4b22c
commit 53a3903
Showing
9 changed files
with
7,653 additions
and
4,438 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Automatically sets up your devbox environment whenever you cd into this | ||
# directory via our direnv integration: | ||
|
||
eval "$(devbox generate direnv --print-envrc)" | ||
|
||
# check out https://www.jetpack.io/devbox/docs/ide_configuration/direnv/ | ||
# for more details |
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 |
---|---|---|
@@ -1,8 +1,16 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: elm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "04:00" | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: elm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "04:00" | ||
open-pull-requests-limit: 10 | ||
|
||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
day: "sunday" | ||
time: "04:00" | ||
open-pull-requests-limit: 10 |
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 |
---|---|---|
@@ -1,22 +1,23 @@ | ||
name: ci | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
branches: [main] | ||
|
||
jobs: | ||
docker: | ||
ci: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set current date as env variable | ||
id: tagname | ||
run: echo "::set-output name=timestamp::$(date +'%s')" | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: Install devbox | ||
uses: jetpack-io/[email protected] | ||
with: | ||
node-version-file: ".node-version" | ||
enable-cache: true | ||
|
||
- run: npm ci | ||
- run: npm run format:validate | ||
|
@@ -36,5 +37,5 @@ jobs: | |
env: | ||
TAG_NAME: ${{ steps.tagname.outputs.timestamp }} | ||
with: | ||
push: true | ||
push: ${{ github.ref_name == 'main' }} | ||
tags: mstruebing/elmodoro:${{ steps.tagname.outputs.timestamp }} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"packages": ["[email protected]"], | ||
"shell": { | ||
"init_hook": ["export NODE_OPTIONS=--openssl-legacy-provider"], | ||
"scripts": { | ||
"test": ["echo \"Error: no test specified\" && exit 1"] | ||
} | ||
} | ||
} |
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,25 @@ | ||
{ | ||
"lockfile_version": "1", | ||
"packages": { | ||
"[email protected]": { | ||
"last_modified": "2023-09-15T06:49:28Z", | ||
"resolved": "github:NixOS/nixpkgs/46688f8eb5cd6f1298d873d4d2b9cf245e09e88e#nodejs_20", | ||
"source": "devbox-search", | ||
"version": "20.6.1", | ||
"systems": { | ||
"aarch64-darwin": { | ||
"store_path": "/nix/store/jz06h6pg4rbvvcrmwb31xvszn43rib55-nodejs-20.6.1" | ||
}, | ||
"aarch64-linux": { | ||
"store_path": "/nix/store/n49p920r37bpk6cjslvs53nfvdax6s2h-nodejs-20.6.1" | ||
}, | ||
"x86_64-darwin": { | ||
"store_path": "/nix/store/w07l7126jfc8r5x24dghih6i9mlyf0pg-nodejs-20.6.1" | ||
}, | ||
"x86_64-linux": { | ||
"store_path": "/nix/store/nwm5z051xxvyk3i7gh59m911nmpl9wrs-nodejs-20.6.1" | ||
} | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.