Skip to content

Commit

Permalink
ci(seeder): github actions (#3962)
Browse files Browse the repository at this point in the history
* test add

* add

* fix typo

* changes

* test

* add

* remove

* add

* aaaaa

* adddd

* readd defaults

* wooo

* test without cache path

* revert

* ...
  • Loading branch information
moonlitgrace authored Aug 11, 2024
1 parent 4d6a113 commit e86f28e
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/seeder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Seeder

on:
push:
branches: ["master"]
paths: ["seeder/**"]
pull_request:
branches: ["master"]
paths: ["seeder/**"]

defaults:
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:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: seeder/package-lock.json
- name: Install Dependencies
run: npm ci
- name: Run Build
run: npm run build

0 comments on commit e86f28e

Please sign in to comment.