This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
release: 0.2.8 (#93) #167
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: nodejs CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.14.2 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
# Install locked dependencies and prepare types | |
- run: npm ci | |
- run: npm run dev:prepare | |
# Check if build and package artifacts can still be generated | |
- run: npm run prepack | |
# Check linting and typing | |
- run: npm run lint | |
- run: npm run types | |
# Check building | |
- run: npm run build:module | |
- run: npm run build:playground |