Browse Source

create first workflow action

pull/478/head
Guillaume Vincent 5 years ago
committed by GitHub
parent
commit
9bacf6ecc8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      .github/workflows/main.yml

+ 15
- 0
.github/workflows/main.yml View File

@@ -0,0 +1,15 @@
name: ci

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: test javascript packages
run: |
yarn install
yarn test

Loading…
Cancel
Save