diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/changesets.yml | 38 | ||||
-rw-r--r-- | .github/workflows/deno.yml | 30 | ||||
-rw-r--r-- | .github/workflows/node.yml | 5 |
3 files changed, 72 insertions, 1 deletions
diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml new file mode 100644 index 0000000..e5613b8 --- /dev/null +++ b/.github/workflows/changesets.yml @@ -0,0 +1,38 @@ +name: Changesets + +on: + push: + branches: + - master + +jobs: + changesets: + name: Changesets + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Cache turborepo + uses: actions/cache@v4 + with: + path: .turbo + key: ${{ runner.os }}-turbo-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-turbo- + - name: Install pnpm and dependencies + uses: pnpm/action-setup@v4 + with: + run_install: true + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "latest" + - name: Create PR or Publish + id: changesets + uses: changesets/action@v1 + with: + publish: pnpm publish-packages + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_CONFIG_PROVENANCE: tre + NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
\ No newline at end of file diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml new file mode 100644 index 0000000..1ae1daa --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,30 @@ +name: Deno + +on: + push: + paths: + - "src/packges/locusts/mod.ts" + - "**/deno.json" + - ".github/workflows/deno.yml" + pull_request: + paths: + - "src/packges/locusts/mod.ts" + - "**/deno.json" + - ".github/workflows/deno.yml" + +jobs: + test-and-publish: + name: Test + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Deno + uses: denolib/setup-deno@v2 + - name: Test + run: deno test src/packges/locusts/mod.ts + - name: Publish on Tag + run: deno run -A jsr:@david/publish-on-tag
\ No newline at end of file diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 58488a6..2428110 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -23,7 +23,10 @@ on: jobs: build-and-test: name: Build and Test - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v4 - name: Cache turborepo |