diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 71650551..5c7ad9d8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -62,15 +62,19 @@ jobs: ls -al install/* echo "${PWD}/install/bin" >> $GITHUB_PATH - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: '20' - cache: 'yarn' - - - name: Install packages + - name: Enable Corepack run: | - yarn install --pure-lockfile + corepack enable + corepack prepare yarn@stable --activate + corepack yarn --version + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v6 + with: + node-version: ${{ matrix.node-version }} + cache: yarn + - name: Install dependencies + run: corepack yarn install --immutable - name: Configure rails app run: | diff --git a/.gitignore b/.gitignore index ee71bafd..3b4c4cd5 100644 --- a/.gitignore +++ b/.gitignore @@ -77,5 +77,3 @@ app/javascript/XDSMjs # Ignore Openmdao reports **/reports **/*_out - -# Ignore sqlite files diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz new file mode 100644 index 00000000..75529e42 Binary files /dev/null and b/.yarn/install-state.gz differ diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 00000000..dc612810 --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1,6 @@ +approvedGitRepositories: + - "**" + +enableScripts: true + +nodeLinker: node-modules diff --git a/CHANGELOG b/CHANGELOG index fc53c778..5e0594ce 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,10 @@

CHANGELOG

+

2.0.3 (28/04/2026)

+ +

2.0.2 (13/04/2026)