Skip to content

Commit

Permalink
Setup github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nlepage committed Mar 17, 2023
1 parent 3131bb3 commit 55aba0b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: [ 'v3' ]
pull_request:
branches: [ 'v3' ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: yarn install
- run: yarn build
- run: yarn test
- run: yarn lint

0 comments on commit 55aba0b

Please sign in to comment.