chore(deps): update typescript-eslint monorepo to v8 (major) #379
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: Main CI Workflow | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ARANGO_NAME: arango_migrate_test | |
ARANGO_URL: http://localhost:8529 | |
ARANGO_USERNAME: root | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: xinova/arangodb-action@v1 | |
with: | |
arangodb version: "latest" | |
- uses: actions/checkout@v3 | |
name: Use Node.js ${{ matrix.node-version }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: c-hive/gha-yarn-cache@v2 | |
- name: Install | |
run: yarn install | |
- name: Type Check | |
run: yarn tsc | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test |