Skip to content

Commit

Permalink
Added build script for simple sample in TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Jul 9, 2024
1 parent e212f44 commit b4de307
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/build_and_test_sample_ts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Build and test Simple Sample TypeScript

on:
# run it on push to the default repository branch
push:
branches: [main]
paths:
- "samples/simple-ts/**"
- "./.github/workflows/build_and_test_sample_ts.yml"

# run it during pull request
pull_request:
paths:
- "samples/simple-ts/**"
- "./.github/workflows/build_and_test_sample_ts.yml"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

defaults:
run:
working-directory: samples/simple-ts

jobs:
build-and-test-code:
name: Build sample code
# use system defined below in the tests matrix
runs-on: ubuntu-latest

steps:
- name: Check Out Repo
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ./samples/simple-ts/.nvmrc
cache: "npm"
cache-dependency-path: "./samples/simple-ts/package-lock.json"

- name: Install dependencies
run: npm ci

- name: Build TS
run: npm run build:ts

- name: Run linting (ESlint and Prettier)
run: npm run lint

- name: Build
run: npm run build

- name: Test
run: npm run test

0 comments on commit b4de307

Please sign in to comment.