Skip to content

Commit

Permalink
ci: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrouge committed Apr 4, 2024
1 parent 1e2b5c0 commit b30ff6b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -17,21 +17,20 @@ jobs:

strategy:
matrix:
node-version: [14.x, 15.x, 16.x, 17.x]
node-version: [18.x, 20.x, 21.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm

- name: Installing dependencies
run: npm ci

- name: Building module
- name: Building package
run: npm run build

- name: Running tests
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/docs.yml
Expand Up @@ -11,22 +11,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js 16.8.0
uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: 16.8.0
node-version: 20.x
cache: npm

- name: Installing dependencies
run: npm ci

- name: Building site
- name: Building documentation
run: npm run docs

- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.0
uses: zyrouge/github-push-action@v1
with:
branch: gh-pages
folder: docs
directory: docs

0 comments on commit b30ff6b

Please sign in to comment.