Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
52 changes: 52 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build Status

on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- CONTRIBUTING.md
- LICENSE
- README.md
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json

- name: Install dependencies
run: |
npm install

- name: Build
run: |
npm run build

- name: Lint
run: |
npm run lint

- name: Test
run: |
npm run test

- name: Upload coverage
uses: codecov/codecov-action@v3
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# example-project-javascript

Example javascript project

[![Build Status](https://github.com/ColumbiaOSS/example-project-javascript/workflows/Build%20Status/badge.svg?branch=main)](https://github.com/ColumbiaOSS/example-project-javascript/actions?query=workflow%3A%22Build+Status%22)
[![codecov](https://codecov.io/gh/ColumbiaOSS/example-project-javascript/branch/main/graph/badge.svg)](https://codecov.io/gh/ColumbiaOSS/example-project-javascript)


## Details
This project uses the TypeScript dialect of JavaScript. It has the following commands:
- `npm install`: install dependencies
Expand Down