Skip to content

Commit

Permalink
chore: update dependencies, add lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
thepiwo committed Feb 7, 2022
1 parent bf92a20 commit adc54a4
Show file tree
Hide file tree
Showing 4 changed files with 734 additions and 1,469 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
src/init/artifacts/test/**
src/init/update-artifacts/test/**
tooling/**
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build and Test

on: [push]

jobs:
build-and-test:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: npm ci
- run: npm run lint:ci
Loading

0 comments on commit adc54a4

Please sign in to comment.