Skip to content

Endpoints

Endpoints #14

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: borales/actions-yarn@v3.0.0
with:
cmd: install # will run `yarn install` command
- uses: borales/actions-yarn@v3.0.0
with:
cmd: build # will run `yarn build` command
- uses: borales/actions-yarn@v3.0.0
with:
cmd: test # will run `yarn test` command