Skip to content

Commit

Permalink
ci: upgrade node to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
why520crazy committed Dec 12, 2023
1 parent 88ab18e commit e581a05
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: CI NGX-VALIDATOR through Github Actions
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x

- name: Setup
run: npm ci
- name: Setup
run: npm ci

- name: Test
run: |
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
- name: Test
run: |
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI

0 comments on commit e581a05

Please sign in to comment.