Skip to content

Use github actions for test and deployment #2

Use github actions for test and deployment

Use github actions for test and deployment #2

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
test:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: yarn --frozen-lockfile --non-interactive --silent --ignore-scripts
- name: Run static analysis
run: yarn test