Skip to content

Commit

Permalink
🔧 github actions toegevoegd met nvmrc
Browse files Browse the repository at this point in the history
  • Loading branch information
scar055 committed Mar 17, 2023
1 parent 3262f46 commit 4d8e4fa
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Continuous Delivery

on:
push:
pull_request:

jobs:
install:
runs-on: ubuntu-latest

steps:
- name: Checkout branch
uses: actions/checkout@v3

- name: Set up Node.js version
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install dependencies
run: |
npm ci
- name: Build
run: |
npm run build
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16

0 comments on commit 4d8e4fa

Please sign in to comment.