Skip to content

Commit 48e09a6

Browse files
chore(CI): cleanup workflows (#44)
1 parent 5a3703c commit 48e09a6

File tree

12 files changed

+98
-439
lines changed

12 files changed

+98
-439
lines changed

.github/workflows/blob.yml

-77
This file was deleted.

.github/workflows/fetch.yml

-89
This file was deleted.

.github/workflows/file.yml

-77
This file was deleted.

.github/workflows/form-data.yml

-78
This file was deleted.

.github/workflows/release.yml

+18-11
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,36 @@
1-
name: release
1+
name: 🦋 Changesets Release
2+
23
on:
34
push:
45
branches:
56
- main
7+
68
concurrency: ${{ github.workflow }}-${{ github.ref }}
7-
env:
8-
CI: true
9+
910
jobs:
1011
release:
11-
name: release
12+
name: 🦋 Changesets Release
13+
1214
if: ${{ github.repository == 'remix-run/web-std-io' }}
15+
1316
runs-on: ubuntu-latest
17+
1418
steps:
15-
- name: Checkout
19+
- name: ⬇️ Checkout repo
1620
uses: actions/checkout@v3
1721
with:
1822
fetch-depth: 0
19-
- name: Setup Node
23+
24+
- name: ⎔ Setup node
2025
uses: actions/setup-node@v3
2126
with:
27+
cache: yarn
2228
node-version: 16
23-
cache: 'yarn'
24-
- name: Install
25-
run: yarn install --frozen-lockfile
26-
- name: Auth
29+
30+
- name: 📥 Install deps
31+
run: yarn --frozen-lockfile
32+
33+
- name: 🔐 Setup npm auth
2734
run: |
2835
echo "registry=https://registry.npmjs.org" >> ~/.npmrc
2936
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
@@ -33,7 +40,7 @@ jobs:
3340
# to `main` with the related changes for the new version. After the PR
3441
# is merged, the workflow will run again and this action will publish to
3542
# npm.
36-
- name: PR / Publish
43+
- name: 🚀 PR / Publish
3744
id: changesets
3845
uses: changesets/action@v1
3946
with:

0 commit comments

Comments
 (0)