Merge pull request #8 from SalatDressingOil/add-sbn-lbn #77
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: Testing icx | |
# specify the events this workflow should run on | |
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#on | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
my_job: | |
name: deploy to staging | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- uses: Jaid/[email protected] | |
- run: tsc | |
- name: run tests | |
run: npm run tests |