Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
feat(GitHub Action): added github action VAR.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mutterpedro committed Mar 19, 2020
1 parent 051a9c8 commit d70ad35
Show file tree
Hide file tree
Showing 5 changed files with 4,550 additions and 4,125 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Basic checks
on:
- push
- pull_request
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: VAR.js
uses: MutterPedro/varjs@1.0.0
with:
SCRIPT: "lint"
test:
name: Testing with coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: VAR.js
uses: MutterPedro/varjs@1.0.0
with:
SCRIPT: "test:coverage"
build:
name: Building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: VAR.js
uses: MutterPedro/varjs@1.0.0
with:
SCRIPT: "build"

0 comments on commit d70ad35

Please sign in to comment.