2023-03-03 17:48:43 +01:00
|
|
|
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: borales/actions-yarn@v2.3.0
|
|
|
|
with:
|
|
|
|
cmd: install # will run `yarn install` command
|
|
|
|
- uses: borales/actions-yarn@v2.3.0
|
|
|
|
with:
|
|
|
|
cmd: build # will run `yarn build` command
|