Skip to content

Commit

Permalink
testing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienVesper committed Feb 7, 2022
1 parent 4c3cbb7 commit 1499922
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,25 @@ name: CI

on:
push:
branches: [master]
pull_request:
branches: [master]
branches: [dependabot/**]

jobs:
build:

nodejs:
name: Node.js
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build:git
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Install Packages
run: npm ci

- name: Build Project
run: npm run build:git

0 comments on commit 1499922

Please sign in to comment.