File: node-windows.yml

package info (click to toggle)
node-rollup-plugin-buble 1.0.3%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 644 kB
  • sloc: javascript: 305; makefile: 7
file content (50 lines) | stat: -rw-r--r-- 1,022 bytes parent folder | download | duplicates (4)
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
name: Windows

on:
  pull_request:
    types:
      - edited
      - opened
      - synchronize
  push:
    branches:
      - '*'
      - '!master'

jobs:
  build:
    runs-on: windows-2019

    strategy:
      matrix:
        node: ['20', '18']

    name: Node v${{ matrix.node }}
    steps:
      - name: Configure git line-breaks
        run: git config --global core.autocrlf false

      - name: Checkout Commit
        uses: actions/checkout@v4
        with:
          fetch-depth: 2

      - name: Update Master
        run: git pull --force --no-tags origin master:master

      - name: Setup Node
        uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node }}

      - name: Enable Corepack
        id: pnpm-setup
        run: |
          corepack enable
          corepack prepare pnpm@latest --activate

      - name: pnpm install
        run: pnpm install --ignore-scripts

      - name: run tests
        run: pnpm --workspace-concurrency 1 --filter "...[origin/master]" ci:test