Skip to content

Commit

Permalink
deploy: ci should be running on node 14, not 16
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienVesper committed Dec 31, 2021
1 parent 031bd0a commit 5abcb0e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 29 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:

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
29 changes: 0 additions & 29 deletions .github/workflows/node.js.yml

This file was deleted.

0 comments on commit 5abcb0e

Please sign in to comment.