Skip to content

Commit 9315f4a

Browse files
authored
Merge pull request #15 from fortran-lang/maint/update-nodejs-version
General maintainance pre v6 Release
2 parents 14155ba + 6a1167e commit 9315f4a

File tree

504 files changed

+105
-101635
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

504 files changed

+105
-101635
lines changed

.github/workflows/test-workflow.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,25 @@ jobs:
77
fail-fast: false
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
fpm-version: ['v0.1.0','v0.1.1','latest']
10+
fpm-version: ['v0.8.0', 'v0.9.0', 'latest']
11+
node-version: ['20.x']
1112

1213
steps:
1314
- name: Checkout
14-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
16+
17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: ${{ matrix.node-version }}
21+
22+
- name: MacOS system setup
23+
if: runner.os == 'macOS'
24+
run: |
25+
brew install gcc@10
26+
27+
- name: Install dependencies
28+
run: npm ci
1529

1630
- name: fpm-setup
1731
uses: ./ # Uses action in the root directory

.gitignore

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (https://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# TypeScript v1.x
40+
*.ts~
41+
*.tsx~
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional eslint cache
47+
.eslintcache
48+
49+
# Optional REPL history
50+
.node_repl_history
51+
52+
# Output of 'npm pack'
53+
*.tgz
54+
55+
# Yarn Integrity file
56+
.yarn-integrity
57+
58+
# dotenv environment variables file
59+
.env
60+
.env.test
61+
62+
# parcel-bundler cache (https://parceljs.org/)
63+
.cache
64+
65+
# Next.js build output
66+
.next
67+
68+
# Nuxt.js build / generate output
69+
.nuxt
70+
dist
71+
72+
# vuepress build output
73+
.vuepress/dist
74+
75+
# Serverless directories
76+
.serverless/
77+
78+
# FuseBox cache
79+
.fusebox/
80+
81+
# DynamoDB Local files
82+
.dynamodb/

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ inputs:
1717
required: false
1818
default: 'https://github.com/fortran-lang/fpm'
1919
runs:
20-
using: 'node16'
20+
using: 'node20'
2121
main: 'index.js'

node_modules/.bin/semver

Lines changed: 0 additions & 1 deletion
This file was deleted.

node_modules/.bin/uuid

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)