mirror of
https://github.com/gre/gl-react.git
synced 2026-01-25 16:43:36 +00:00
21 lines
336 B
YAML
21 lines
336 B
YAML
name: CI tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 14
|
|
cache: 'yarn'
|
|
- run: yarn
|
|
- run: yarn test
|