mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:41:08 +08:00
25 lines
519 B
YAML
25 lines
519 B
YAML
name: Github CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
node-version: [10]
|
|
os: [ubuntu-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node_version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
version: ${{ matrix.node_version }}
|
|
- name: install, build, and test
|
|
run: |
|
|
yarn bootstrap --core
|
|
yarn test --core
|