Skip to content

Commit

Permalink
run tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbanin committed May 17, 2022
1 parent fd58b2b commit cd18dd1
Show file tree
Hide file tree
Showing 5 changed files with 15,628 additions and 673 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Automated tests

on:
pull_request:
branches: [ main ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3

- name: Install dependencies
run: npm ci

- run: npm run build --if-present

- run: npm test
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## dbt-core 1.2.0 (TBD)
- [Snyk] Upgrade prismjs from 1.27.0 to 1.28.0 ([#271](https://github.com/dbt-labs/dbt-docs/issues/271))
- Fixed sample SQL Code for sources when no database is defined ([docs#272](https://github.com/dbt-labs/dbt-docs/pull/272))

- Run build and tests in CI checks ([docs#274](https://github.com/dbt-labs/dbt-docs/pull/274))

Contributors:
- [@b-per](https://github.com/b-per) ([docs#272](https://github.com/dbt-labs/dbt-docs/pull/272))
Expand Down
Loading

0 comments on commit cd18dd1

Please sign in to comment.