fix: missing runs-on

Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
This commit is contained in:
Florian Bouillon 2023-07-04 15:40:57 +02:00
parent 6ab90803c6
commit 54cc1dfa3d

View File

@ -23,12 +23,14 @@ jobs:
run: npm ci run: npm ci
build: build:
runs-on: ubuntu-latest
needs: 'install' needs: 'install'
steps: steps:
- name: Build - name: Build
run: npm run build run: npm run build
check: check:
runs-on: ubuntu-latest
needs: 'install' needs: 'install'
steps: steps:
- name: Check - name: Check
@ -39,6 +41,7 @@ jobs:
test: test:
runs-on: ubuntu-latest
needs: 'build' needs: 'build'
steps: steps:
- name: Test - name: Test