Bump @types/node from 22.10.0 to 22.10.1 #4031
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: linux | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: shogo82148/actions-setup-perl@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: node -v | |
run: node -v | |
- name: Install JS dependencies | |
run: make install-deps-js | |
- name: perl -V | |
run: perl -V | |
- name: Install dependencies | |
run: | | |
make install-deps-ubuntu install-deps-cpanm | |
- name: Run tests | |
run: make test-unit | |
- name: Run UI tests | |
run: make test-ui | |
- name: Check assets | |
run: ls public/asset | |
- name: Coveralls | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: cover -report Coveralls |