Skip to content

Commit

Permalink
chore: Add main workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Akurganow committed Oct 12, 2023
1 parent eb312e9 commit 5490c37
Show file tree
Hide file tree
Showing 2 changed files with 119 additions and 1 deletion.
118 changes: 118 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
name: Tests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CI: true

jobs:
lint:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
timeout-minutes: 60
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
check-latest: true
node-version-file: '.node-version'

- name: Cache dependencies
id: npm-cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
restore-keys: ${{ runner.os }}-npm-

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Lint
run: npm run lint

test:
needs: [lint]
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
timeout-minutes: 60
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
check-latest: true
node-version-file: '.node-version'

- name: Cache dependencies
id: npm-cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
restore-keys: ${{ runner.os }}-npm-

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Run jest tests
run: npm run test

build:
needs: [test]
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
check-latest: true
node-version-file: '.node-version'

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
restore-keys: ${{ runner.os }}-npm-

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Build
run: npm run build --if-present

- name: Upload packages
uses: actions/upload-artifact@v3
with:
name: lib
path: lib
retention-days: 30
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.20.2
v20.8.0

0 comments on commit 5490c37

Please sign in to comment.