Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit ba3398b

Browse files
committed
created test all workflow
1 parent 45791fa commit ba3398b

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: test-all-packages
2+
on:
3+
pull_request:
4+
branches: ["*"]
5+
types: ["opened", "reopened"]
6+
7+
jobs:
8+
publish:
9+
name: Test All Packages
10+
runs-on: ubuntu-latest
11+
steps:
12+
13+
# Checkout Project
14+
- name: 📚 Checkout
15+
uses: actions/checkout@v2
16+
17+
# Setup NodeJS
18+
- name: 🟢 Setup Node ${{ matrix.node_version }}
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: 12
22+
23+
# Install Dependencies
24+
- name: ⏳ Install
25+
run: yarn install
26+
27+
# Run Tests
28+
- name: 🤔 Test
29+
run: yarn test

0 commit comments

Comments
 (0)