Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
-ci: main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Kloubert committed Jan 8, 2024
1 parent e368a02 commit 65ec303
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ name: Publish
on:
push:
branches:
- master
- main

jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
# - name: Run tests
# run: npm run test
# - name: Run tests
# run: npm run test
- name: Build library
run: npm run build
- name: Generate documentation
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
# - name: Run tests
# run: npm run test
# - name: Run tests
# run: npm run test
- name: Build library
run: npm run build
- name: Generate documentation
Expand Down

0 comments on commit 65ec303

Please sign in to comment.