-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* C * Delete http_cache.sqlite * Update seeder.yml * Update seeder.yml
- Loading branch information
1 parent
c38f1ad
commit c6a58f5
Showing
5 changed files
with
38 additions
and
34 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 |
---|---|---|
@@ -1,38 +1,37 @@ | ||
name: Seeder | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
paths: ["seeder/**"] | ||
pull_request: | ||
branches: ["master"] | ||
paths: ["seeder/**"] | ||
push: | ||
branches: ['master'] | ||
paths: ['seeder/**'] | ||
pull_request: | ||
branches: ['master'] | ||
paths: ['seeder/**'] | ||
|
||
defaults: | ||
run: | ||
working-directory: seeder | ||
run: | ||
working-directory: seeder | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
name: Build on ${{ matrix.os }} | ||
steps: | ||
- name: Checkout Seeder | ||
uses: actions/checkout@v4 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: "npm" | ||
# cache-dependency-path: seeder/package-lock.json | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Run Build | ||
run: npm run build | ||
|
||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
name: Build on ${{ matrix.os }} | ||
steps: | ||
- name: Checkout Seeder | ||
uses: actions/checkout@v4 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: 'npm' | ||
cache-dependency-path: seeder/package-lock.json | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Run Build | ||
run: npm run build |
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
Binary file not shown.
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