Attempting to setup GH actions
This commit is contained in:
parent
a466489b16
commit
73ac67fb1e
1 changed files with 8 additions and 1 deletions
9
.github/workflows/theme_validation.yml
vendored
9
.github/workflows/theme_validation.yml
vendored
|
@ -10,7 +10,14 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/npm@master
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v1.2.0
|
||||
with:
|
||||
node-version: '10.x'
|
||||
|
||||
- name: install deps
|
||||
run: npm install
|
||||
|
||||
- name: Compile license info
|
||||
run: npm run generate:licenses
|
||||
|
||||
|
|
Loading…
Reference in a new issue