Skip to content

chore(deps): update typescript-eslint monorepo to v5.62.0 #2718

chore(deps): update typescript-eslint monorepo to v5.62.0

chore(deps): update typescript-eslint monorepo to v5.62.0 #2718

Workflow file for this run

name: deploy
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: "17.x"
- name: get yarn cache path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{steps.yarn-cache-dir-path.outputs.dir}}
key: ${{runner.os}}-yarn-${{hashFiles('**/yarn.lock')}}
restore-keys: |
${{runner.os}}-yarn-
- name: install dependencies
run: yarn
- name: build test
run: yarn build
deploy:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: docker log in
run: echo "${{secrets.DOCKER_PASSWORD}}" | docker login -u "${{secrets.DOCKER_USERNAME}}" --password-stdin
- name: build and deploy image
shell: bash
run: |
docker build -t eesast/docs:latest .
docker push eesast/docs:latest