Skip to content

Commit

Permalink
ci: add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
olavis committed Jan 23, 2023
1 parent d9f7161 commit 480e24e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "CI"

on:
push:

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19]

steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: run CI
run: |
yarn install
yarn lint
yarn test
yarn build

0 comments on commit 480e24e

Please sign in to comment.