From 39808d6939833e18528628e7af9495f8d080150b Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 29 Oct 2024 10:32:02 -0500 Subject: feat: Deno and Changesets Signed-off-by: Matt Strapp --- .github/workflows/changesets.yml | 38 ++++++++++++++++++++++++++++++++++++++ .github/workflows/deno.yml | 30 ++++++++++++++++++++++++++++++ .github/workflows/node.yml | 5 ++++- 3 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/changesets.yml create mode 100644 .github/workflows/deno.yml (limited to '.github/workflows') 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 -- cgit v1.2.3