Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit 8c3a84b

Browse files
committed
created test yaml
1 parent 23d26c0 commit 8c3a84b

File tree

1 file changed

+20
-23
lines changed

1 file changed

+20
-23
lines changed

.github/workflows/test.yaml

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
1-
name: Publish Packages
1+
name: release
22
on:
33
push:
4-
branches:
5-
- master
4+
branches: ["*"]
5+
66
jobs:
7-
build:
7+
publish:
8+
name: Publish
89
runs-on: ubuntu-latest
910
steps:
10-
- uses: actions/checkout@v1
11-
- uses: actions/setup-node@v1
12-
with:
13-
node-version: 12
14-
- run: yarn
15-
- run: yarn test
16-
release:
17-
name: Release
18-
runs-on: ubuntu-latest
19-
steps:
20-
- name: Checkout Repo
21-
uses: actions/checkout@v1
22-
- name: Setup Node.js
11+
12+
# Checkout Project
13+
- name: 📚 Checkout
14+
uses: actions/checkout@v2
15+
16+
# Setup NodeJS
17+
- name: 🟢 Setup Node ${{ matrix.node_version }}
2318
uses: actions/setup-node@v1
2419
with:
2520
node-version: 12
26-
- name: Install Dependencies
27-
run: yarn
28-
- name: Create Release Pull Request
29-
uses: changesets/action@master
30-
env:
31-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
22+
# Install Dependencies
23+
- name: ⏳ Install
24+
run: yarn install
25+
26+
# Test All
27+
- name: 🤔 Test
28+
run: yarn test

0 commit comments

Comments
 (0)