Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@anton-gorbikov
Created December 23, 2019 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anton-gorbikov/eb40009e276b69c96d8131f43af6325c to your computer and use it in GitHub Desktop.
Save anton-gorbikov/eb40009e276b69c96d8131f43af6325c to your computer and use it in GitHub Desktop.
fable-css-ci
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: action-yarn
uses: comchangs/action-yarn@v0.1-beta
- name: yarn install and build
run: |
yarn
yarn build
env:
CI: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment