Resolve dependency #5
Workflow file for this run
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- dev | |
jobs: | |
test: | |
name: Pokemon TCG TypeScript Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v1 | |
- name: 'Setup Node' | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: 'Install dependencies' | |
run: 'npm ci' | |
- name: 'Format SDK' | |
run: 'npm run prettier' | |
- name: 'Lint SDK' | |
run: 'npm run lint' | |
- name: 'Test SDK' | |
run: 'npm run test' | |
- name: 'Build SDK' | |
run: 'npm run build' |