1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-06-02 14:14:36 +01:00
notes/.github/workflows/ci.yml
2021-01-17 11:30:31 +00:00

28 lines
440 B
YAML

name: CI
on:
push:
branches:
- "*"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12'
- run: yarn install
- run: npm run release
- name: Archive
uses: actions/upload-artifact@v2
with:
name: notes
path: dist