This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
Bump typescript-eslint from 8.0.1 to 8.1.0 #179
Workflow file for this run
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 | |
on: | |
push: | |
branches: [main] | |
schedule: | |
- cron: '0 2 * * *' | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
TEST_SERVER_URL: ${{ secrets.TEST_SERVER_URL }} | |
ACROLINX_API_TOKEN: ${{ secrets.ACROLINX_API_TOKEN }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Chrome | |
id: setup-chrome | |
uses: browser-actions/setup-chrome@v1 | |
with: | |
install-chromedriver: true | |
install-dependencies: true | |
- run: ${{ steps.setup-chrome.outputs.chrome-path }} --version | |
- run: echo "CHROME_BIN_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV | |
- run: echo "CHROMEDRIVER_BIN_PATH=${{ steps.setup-chrome.outputs.chromedriver-path }}" >> $GITHUB_ENV | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Build And Run Tests | |
run: | | |
npm ci | |
npm run format:check | |
npm run build | |
npm run test |