12345678910111213141516171819202122232425262728293031 |
- # GitHub Actions docs
- # https://help.github.com/en/articles/about-github-actions
- # https://help.github.com/en/articles/workflow-syntax-for-github-actions
- name: Install Dependencies, Lint, Build and Test
- on: [push]
- jobs:
- test:
- name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- node_version: [18]
- os: [windows-latest, macOS-latest]
- steps:
- - uses: actions/checkout@v3
- - name: Use Node.js ${{ matrix.node_version }}
- uses: actions/setup-node@v3
- with:
- node-version: ${{ matrix.node_version }}
- - name: Install Dependencies
- run: npm ci
- - name: Lint
- run: npm run lint
- - name: Build
- run: npm run build -- --prod
- - name: Test
- run: npm test
|