diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37b1d58..3a23fd8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,20 +2,20 @@ name: Run TypeScript Compiler on: push: - branches: [ develop ] + branches: [ development ] pull_request: - branches: [ develop ] + branches: [ development ] jobs: - lint: + build: runs-on: windows-latest strategy: matrix: node-version: [18.19.0] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install npm diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3fa1a52..5cf876e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,9 +2,9 @@ name: Run ESLint Linter on: push: - branches: [ develop ] + branches: [ development ] pull_request: - branches: [ develop ] + branches: [ development ] jobs: lint: @@ -13,9 +13,9 @@ jobs: matrix: node-version: [18.19.0] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install npm