Skip to content

Commit edc5851

Browse files
committed
Migrate actions to yaml
1 parent 11da12e commit edc5851

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.github/main.workflow

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/push.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: push
2+
name: Build & Test
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: Build
10+
uses: nuxt/actions-yarn@master
11+
with:
12+
args: install
13+
- name: Test
14+
uses: nuxt/actions-yarn@master
15+
with:
16+
args: test

0 commit comments

Comments
 (0)