Skip to content

Add empty files to trigger build and test #25

Add empty files to trigger build and test

Add empty files to trigger build and test #25

Workflow file for this run

name: Build and test lang-dot package
on:
push:
branches-ignore:
- v2
- gh-pages
paths:
- "packages/lang-dot/**"
workflow_call: {}
permissions:
contents: read
jobs:
build:
name: Build and test lang-dot package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: "Run build and test"
run: |
yarn install --frozen-lockfile
yarn build
yarn test
working-directory: packages/lang-dot
- uses: actions/upload-artifact@v3
with:
name: dist
path: packages/lang-dot/dist
test-types:
name: Test types
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: "Run yarn install in package directory"
run: |
yarn install --frozen-lockfile
working-directory: packages/lang-dot
- name: "Run check-types"
run: |
yarn install --frozen-lockfile
yarn check-types
working-directory: packages/lang-dot/test/types