Skip to content

Commit

Permalink
upgrade nodejs version in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thostetler committed Aug 24, 2021
1 parent 5ef151a commit 5f90600
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,21 @@ on: [pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '11.14.0'
architecture: 'x64'
- run: npm install -g grunt-cli
- run: npm ci
- run: grunt setup
- run: grunt test:prod

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "test/coverage/reports/lcov/lcov.info"
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.7.0'
architecture: 'x64'
- run: npm install -g grunt-cli
- run: npm ci
- run: grunt setup
- run: grunt test:prod

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: 'test/coverage/reports/lcov/lcov.info'

0 comments on commit 5f90600

Please sign in to comment.