Skip to content

Instantly share code, notes, and snippets.

@denar90
Created February 24, 2021 22:07
Show Gist options
  • Save denar90/9885b0a828d89f6263aa98b665539983 to your computer and use it in GitHub Desktop.
Save denar90/9885b0a828d89f6263aa98b665539983 to your computer and use it in GitHub Desktop.
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