Tagging the tasks #183
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: Build reference-apps CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-and-release: | |
name: Build refapps | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Check Node.js version | |
run: node -v | |
- name: Install dependencies | |
run: yarn install | |
- name: Build reference apps | |
run: yarn build:refapps |