Skip to content

Commit

Permalink
Add commit function in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
vn7n24fzkq committed Aug 26, 2020
1 parent 5a58b26 commit 688c804
Show file tree
Hide file tree
Showing 5 changed files with 1,106 additions and 6,469 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 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: Node.js CI
name: Github JavaScript action CI

on:
push:
Expand All @@ -16,14 +16,14 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm install
- run: npm test

Loading

0 comments on commit 688c804

Please sign in to comment.