Skip to content

Commit

Permalink
ci: Only run build action on spec.emu updates, use Node.js 16
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli committed Sep 11, 2022
1 parent 72eefa5 commit 5330080
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Deploy spec

on: [push]
on:
push:
paths:
- spec.emu

jobs:
build:
Expand All @@ -10,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'
- run: npm install
- run: npm run build
- name: commit changes
Expand Down

0 comments on commit 5330080

Please sign in to comment.