Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/ci' into maintenance/uni…
Browse files Browse the repository at this point in the history
…t-tests

# Conflicts:
#	src/helpers/page-tree.ts
  • Loading branch information
djohalo2 committed Jul 12, 2024
2 parents 72e54f9 + b0b56dd commit e29c2ee
Show file tree
Hide file tree
Showing 19 changed files with 340 additions and 313 deletions.
File renamed without changes.
31 changes: 31 additions & 0 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build, lint, and test

on: [push]

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build typescript
run: npm run tsc

- name: Run ESLint
run: npm run lint

# TODO Uncomment when tests are added
# - name: Run tests
# run: npm test

- name: Build package
run: npm run build
File renamed without changes.
241 changes: 114 additions & 127 deletions examples/studio-i18n/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e29c2ee

Please sign in to comment.