Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Commit ba33ebd

Browse files
authoredFeb 4, 2022
Create build-reactjs-org.yml
1 parent 5700ad7 commit ba33ebd

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
 
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3+
4+
name: Node.js Package
5+
6+
on:
7+
release:
8+
types: [created]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: 16
18+
- run: ./reactjs-org.sh
19+
- name: Upload a Build Artifact
20+
uses: actions/upload-artifact@v2.3.1
21+
with:
22+
name: reactjs-org
23+
path: public
24+
warn: Output a warning but do not fail the action
25+
error: Fail the action with an error message
26+
ignore: Do not output any warnings or errors, the action does not fail
27+

0 commit comments

Comments
 (0)
This repository has been archived.