Created
February 24, 2021 22:07
-
-
Save denar90/9885b0a828d89f6263aa98b665539983 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node_version: 14 | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Publish | |
run: npm run publish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment