Skip to content

Attempt to fix github actions #14

Attempt to fix github actions

Attempt to fix github actions #14

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker-compose up -d
- uses: actions/setup-node@v2
with:
node-version: '18.18.2'
- uses: .github/actions/yarn-install
- uses: .github/actions/git-submodule
- run: yarn build
- run: yarn lint
- run: yarn pretest
- run: yarn test --runInBand --ci