diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index acb1a6f..f11cefa 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,6 +2,5 @@ Please fill in this template. - [ ] Use a meaningful title for the pull request. - [ ] Use meaningful commit messages. -- [ ] Run `tsc` w/o errors (same as `npm run compile`). +- [ ] Run `tsc` w/o errors (same as `npm run build`). - [ ] Run `npm run lint` w/o errors. - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d87184..56c26bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,14 +42,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: - node-version: 16 + node-version: lts/* - name: Install - env: - CI: true run: npm ci - name: Create Changelog run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 80776a0..c7367b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,9 +26,9 @@ jobs: - name: Preserve line endings run: git config --global core.autocrlf false - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - name: Start xvfb @@ -41,5 +41,4 @@ jobs: npm ci npm test env: - CI: true DISPLAY: ":99.0"