diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 43cd893..ef5f87a 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -9,21 +9,18 @@ on: jobs: run-eslint: name: Format - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] + runs-on: ubuntu-latest steps: - name: Check out Git repository uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 16.x cache: 'npm' - + - name: Install Node.js dependencies run: npm ci diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 13f7a71..b25583e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,21 +9,18 @@ on: jobs: run-eslint: name: Lint - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] + runs-on: ubuntu-latest steps: - name: Check out Git repository uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 16.x cache: 'npm' - + - name: Install Node.js dependencies run: npm ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62b92d3..8916b9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,20 +8,17 @@ jobs: release: name: Release runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] steps: - name: Check out Git repository uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 16.x cache: 'npm' - + - name: Install Node.js dependencies run: npm ci diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d0b97c..caa588a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,23 +10,19 @@ jobs: test-generator: name: Test runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] steps: - name: Check out Git repository uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} - + node-version: 16.x + - name: Install Node.js dependencies - run: | - npm install + run: npm install - - name: test-generator + - name: Test generator run: npm run test:defaultPath continue-on-error: true diff --git a/package-lock.json b/package-lock.json index f9e1976..e017d16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,6 +5,7 @@ "requires": true, "packages": { "": { + "name": "openapi-forge-typescript", "version": "0.1.0", "license": "MIT", "devDependencies": {