misskey/.github/workflows/nodejs.yml

31 lines
604 B
YAML
Raw Normal View History

2019-10-19 05:26:35 +00:00
name: Node.js CI
on:
push:
branches:
- master
- develop
pull_request:
2019-10-19 05:26:35 +00:00
jobs:
2019-10-24 19:30:43 +00:00
build_and_test:
2019-10-19 05:26:35 +00:00
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
2019-10-19 05:26:35 +00:00
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Copy Configure
2019-10-19 05:28:45 +00:00
run: cp .circleci/misskey/*.yml .config
2019-10-19 05:26:35 +00:00
- name: Build
run: yarn build
2019-10-24 19:30:43 +00:00
- name: Test
run: yarn test