Reference the new home of the version placeholder #1709
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: tests | |
on: | |
push: | |
branches: | |
- master | |
- ci | |
pull_request: | |
jobs: | |
test: | |
# Skip tests when doing a release to avoid the workflow race | |
# when the release PR gets merged by the bot. | |
if: needs.prep.outputs.version == 0 | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.edgedb-version == 'nightly' }} | |
strategy: | |
matrix: | |
node-version: ["16", "18", "20"] | |
os: [ubuntu-latest] | |
edgedb-version: ["stable"] | |
include: | |
- os: ubuntu-latest | |
node-version: "18" | |
edgedb-version: "nightly" | |
- os: ubuntu-latest | |
node-version: "18" | |
edgedb-version: "2" | |
- os: ubuntu-latest | |
node-version: "18" | |
edgedb-version: "1" | |
- os: macos-latest | |
node-version: "18" | |
edgedb-version: "stable" | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 50 | |
submodules: true | |
- name: Setup WSL | |
if: ${{ matrix.os == 'windows-2019' }} | |
uses: vampire/setup-wsl@v1 | |
with: | |
wsl-shell-user: edgedb | |
additional-packages: ca-certificates | |
curl | |
- name: Set up Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set up Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.30.x | |
# - uses: bahmutov/npm-install@v1.8.15 | |
# - uses: bahmutov/npm-install@v1.8.15 | |
# with: | |
# working-directory: qb | |
- name: Install dev deps | |
run: | | |
yarn | |
- name: Lint | |
run: | | |
yarn lint | |
- name: Check format | |
run: | | |
yarn run format:check | |
- name: ESLint (ignore failures for now) | |
run: | | |
yarn eslint || echo "ESLint still failing... Fine for now!" | |
- name: Build | |
run: | | |
yarn workspaces run build | |
# - name: Compile for Deno | |
# run: | | |
# yarn build:deno | |
- name: Install EdgeDB | |
uses: edgedb/setup-edgedb@8bc9e10005674ec772652b86e1fdd476e6462284 | |
with: | |
instance-name: test | |
server-version: ${{ matrix.edgedb-version }} | |
- name: Show actual EdgeDB server version | |
run: | | |
echo ACTIVE_EDGEDB_VERSION=$(edgedb query 'select sys::get_version_as_str()' -I test) >> $GITHUB_ENV | |
- name: Run query builder tests | |
run: | | |
yarn workspace @edgedb/generate test:ci | |
- name: Run query builder integration tests legacy | |
if: ${{ matrix.edgedb-version == '1' || matrix.edgedb-version == '2' }} | |
run: | | |
yarn workspace @edgedb/integration-legacy test:ci | |
- name: Run query builder integration tests lts | |
if: ${{ matrix.edgedb-version == '2' || matrix.edgedb-version == 'stable' || matrix.edgedb-version == 'nightly' }} | |
run: | | |
yarn workspace @edgedb/integration-lts test:ci | |
- name: Run query builder integration tests stable | |
if: ${{ matrix.edgedb-version == 'stable' || matrix.edgedb-version == 'nightly' }} | |
run: | | |
yarn workspace @edgedb/integration-stable test:ci | |
- name: Run query builder integration tests nightly | |
if: ${{ matrix.edgedb-version == 'nightly' }} | |
run: | | |
yarn workspace @edgedb/integration-nightly test:ci | |
- name: Run functional tests | |
run: | | |
yarn workspace edgedb test | |
# This job exists solely to act as the test job aggregate to be | |
# targeted by branch policies. | |
regression-tests: | |
name: "Regression Tests" | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo OK |