Skip to content

Commit

Permalink
include node v18 to run tests + bump actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
pranabdas committed Nov 23, 2023
1 parent ce6b2d9 commit 176ec74
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -39,12 +39,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -60,16 +60,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x, 18.x]

steps:
- name: Checkout this repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -79,7 +79,7 @@ jobs:
uses: ./actions/js/validate
with:
node-version: '14.x'

- name: Run JS tests
uses: ./actions/js/test
with:
Expand All @@ -92,12 +92,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -118,12 +118,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand Down
10 changes: 8 additions & 2 deletions manifest/properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,14 @@ inchi_key:
material:
schemaId: material

hubbard_parameters:
hubbard_u:
defaults:
units: eV
schemaId: properties-directory/non-scalar/hubbard-parameters
schemaId: properties-directory/non-scalar/hubbard-u
isResult: true

hubbard_v:
defaults:
units: eV
schemaId: properties-directory/non-scalar/hubbard-v
isResult: true

0 comments on commit 176ec74

Please sign in to comment.