Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/Fresh' into Fresh
Browse files Browse the repository at this point in the history
  • Loading branch information
lewixlabs committed Dec 24, 2023
2 parents 138412f + d6426ca commit 6a00391
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libpcsclite1 libpcsclite-dev
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install Yarn
run: npm install -g yarn

- name: Install Typescript
run: npm install -g typescript

- name: Install project dependencies
run: yarn install

- name: Build
run: tsc

0 comments on commit 6a00391

Please sign in to comment.