-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure and run lost-pixel on the screencaps from VHS
- Loading branch information
1 parent
ea48558
commit 1667d5f
Showing
7 changed files
with
1,184 additions
and
7 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
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 |
---|---|---|
|
@@ -163,11 +163,46 @@ jobs: | |
uses: actions/upload-artifact@v4 | ||
with: | ||
name: plan.mp4 | ||
path: plan.* | ||
path: e2e/plan.* | ||
|
||
- name: Upload plan results | ||
- name: Upload apply results | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: apply.mp4 | ||
path: apply.* | ||
path: e2e/apply.* | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v3 | ||
id: pnpm-install | ||
with: | ||
version: 9 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | ||
- name: Setup pnpm cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
run: pnpm install | ||
continue-on-error: false | ||
|
||
- name: Lost Pixel | ||
uses: lost-pixel/[email protected] | ||
env: | ||
LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }} |
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 |
---|---|---|
|
@@ -31,3 +31,4 @@ overmind.plan | |
terraform.tfstate | ||
terraform.tfstate.backup | ||
/tmp/ | ||
/node_modules |
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,11 @@ | ||
import { CustomProjectConfig } from 'lost-pixel'; | ||
|
||
export const config: CustomProjectConfig = { | ||
customShots: { | ||
currentShotsPath: "./lost-pixel", | ||
|
||
// Lost Pixel Platform (to use in Platform mode, comment out the OSS mode and uncomment this part ) | ||
lostPixelProjectId: 'clfpdav6b0xkkln0ewld9jtqs', | ||
apiKey: process.env.LOST_PIXEL_API_KEY, | ||
} | ||
}; |
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,18 @@ | ||
{ | ||
"name": "cli", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"lost-pixel": "lost-pixel", | ||
"lost-pixel:update": "lost-pixel update" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"packageManager": "[email protected]+sha256.d6fc013639b81658ff175829ebb9435bcb89eff206769e460fd3ae27c2054df6", | ||
"dependencies": { | ||
"@types/node": "^20.14.9", | ||
"lost-pixel": "^3.17.0" | ||
} | ||
} |
Oops, something went wrong.