-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (66 loc) · 2.23 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: "Test & Deploy"
on: [push, pull_request]
env:
DIRENV_WARN_TIMEOUT: 5m
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
avsc: [5.7.x, 6.0.0-alpha.14]
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v12
- uses: DeterminateSystems/magic-nix-cache-action@v7
- name: Check Nix flake Nixpkgs inputs
uses: DeterminateSystems/flake-checker-action@main
- run: nix flake check --no-build
- name: Install direnv with Nix
uses: aldoborrero/direnv-nix-action@v2
with:
use_nix_profile: true
- name: Pre-commit checks
run: pre-commit run --all-files
- name: npm install
run: npm ci
- name: Install avsc
run: npm install --no-save avsc@${{ matrix.avsc }}
- name: Test
run: npm run test:coverage
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.avsc }}.zip
path: coverage/
npm:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v12
- uses: DeterminateSystems/magic-nix-cache-action@v7
- name: Get tag version
if: startsWith(github.ref, 'refs/tags/')
id: get_tag_version
run: echo TAG_VERSION=${GITHUB_REF/refs\/tags\//} >> $GITHUB_OUTPUT
- name: Set package version
if: startsWith(github.ref, 'refs/tags/')
run: npm version ${{steps.get_tag_version.outputs.TAG_VERSION}}
- name: npm install
run: nix develop --command npm install
- name: Build
run: npm run build
- name: Pack
run: nix develop --command npm pack
- name: Archive generated npm package
uses: actions/upload-artifact@v4
with:
name: npm-package.zip
path: planet-a-avsc-zstandard-codec-*.tgz
- name: Publish to npm
if: startsWith(github.ref, 'refs/tags/')
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: nix develop --ignore-environment --keep NODE_AUTH_TOKEN --command bash -c 'npm publish planet-a-avsc-zstandard-codec-*.tgz'