chore(deps): update typescript-eslint monorepo to v8 #269
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'build-test-ci' | |
on: # rebuild any PRs and main branch changes | |
push: | |
branches-ignore: | |
- "release-please-**" | |
- "main" | |
permissions: | |
contents: read | |
jobs: | |
test-typescript: | |
name: TypeScript Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: yarn | |
- name: Install Dependencies | |
id: yarn-ci | |
run: yarn | |
- name: Check Format | |
id: yarn-format-check | |
run: yarn run format:check | |
- name: Lint | |
id: yarn-lint | |
run: yarn run lint | |
- name: Test | |
id: yarn-ci-test | |
run: yarn run ci-test | |
test-action: | |
name: GitHub Actions Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- uses: ./ | |
with: | |
src: docker.io/node:20 | |
destinations: | | |
docker.io/u4ic/test-node:node-20 | |
docker.io/u4ic/test-node:latest | |
docker.io/u4ic/test-node2:latest | |